mirror of
https://github.com/sameer1612/.dotfiles.git
synced 2024-11-19 18:01:53 +02:00
installed deno2
This commit is contained in:
parent
a313252133
commit
30022770c1
@ -62,6 +62,11 @@ map("n", "<leader>ld", "<cmd>Lspsaga peek_definition<CR>", opts)
|
||||
map("n", "<leader>lf", "<cmd>Lspsaga finder<CR>", opts)
|
||||
map("n", "<leader>le", "<cmd>Lspsaga diagnostic_jump_next<CR>", opts)
|
||||
|
||||
-- nvim-tree mappings
|
||||
map("n", "<leader>ee", "<cmd>NvimTreeFindFileToggle<CR>", { desc = "Toggle file explorer on current file" })
|
||||
map("n", "<leader>ec", "<cmd>NvimTreeCollapse<CR>", { desc = "Collapse file explorer" })
|
||||
map("n", "<leader>er", "<cmd>NvimTreeRefresh<CR>", { desc = "Refresh file explorer" })
|
||||
|
||||
-- remove default mappings
|
||||
nomap("n", "<leader>n")
|
||||
nomap("n", "<leader>b")
|
||||
|
2305
.zsh/completions/_deno.zsh
Normal file
2305
.zsh/completions/_deno.zsh
Normal file
File diff suppressed because it is too large
Load Diff
4
.zshrc
4
.zshrc
@ -1,3 +1,5 @@
|
||||
# Add deno completions to search path
|
||||
if [[ ":$FPATH:" != *":/Users/sameer/.zsh/completions:"* ]]; then export FPATH="/Users/sameer/.zsh/completions:$FPATH"; fi
|
||||
# If you come from bash you might have to change your $PATH.
|
||||
# export PATH=$HOME/bin:/usr/local/bin:$PATH
|
||||
|
||||
@ -173,3 +175,5 @@ PROMPT='%{$fg[cyan]%}%c$(git_prompt_info) %(!.%{$fg_bold[red]%}#.%{$fg_bold[red]
|
||||
source ~/.config/lf/scripts/lfcd.sh
|
||||
|
||||
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|
||||
. "/Users/sameer/.deno/env"
|
||||
ZSH_DISABLE_COMPFIX=true
|
||||
|
Loading…
Reference in New Issue
Block a user