File tree 4 files changed +11
-4
lines changed
4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ Plug 'nvim-lua/popup.nvim'
8
8
Plug ' nvim-lua/plenary.nvim'
9
9
Plug ' nvim-telescope/telescope.nvim'
10
10
11
+ Plug ' folke/todo-comments.nvim'
12
+
11
13
Plug ' neovim/nvim-lspconfig'
12
14
Plug ' hrsh7th/nvim-compe'
13
15
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ lsp.tsserver.setup {
5
5
on_attach = on_attach ,
6
6
root_dir = lsp .util .root_pattern (" package.json" ),
7
7
}
8
- lsp .denols .setup {
9
- on_attach = on_attach ,
10
- root_dir = lsp .util .root_pattern (" deno.json" , " deno.jsonc" ),
11
- }
8
+ -- lsp.denols.setup {
9
+ -- on_attach = on_attach,
10
+ -- root_dir = lsp.util.root_pattern("deno.json", "deno.jsonc"),
11
+ -- }
12
12
lsp .gopls .setup { }
13
13
lsp .graphql .setup { }
14
14
lsp .dockerls .setup { }
Original file line number Diff line number Diff line change @@ -5,3 +5,6 @@ nnoremap <Leader>pf :lua require('telescope.builtin').find_files()<CR>
5
5
nnoremap <leader> pw :lua require('telescope.builtin').grep_string { search = vim.fn.expand("<cword> ") }<CR>
6
6
nnoremap <leader> pb :lua require('telescope.builtin').buffers()<CR>
7
7
nnoremap <leader> vh :lua require('telescope.builtin').help_tags()<CR>
8
+
9
+ lua require (" todo-comments" ).setup{}
10
+ nnoremap <C-t> :TodoTelescope<CR>
Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH"
43
43
export BUN_INSTALL=" /Users/tim/.bun"
44
44
export PATH=" $BUN_INSTALL /bin:$PATH "
45
45
46
+ eval " $( fnm env --use-on-cd) "
47
+
46
48
export NOMAD_ADDR=http://10.10.0.16:4646
47
49
export CONSUL_HTTP_ADDR=http://10.10.0.16:8500
48
50
export VAULT_ADDR=https://10.10.0.16:8200
You can’t perform that action at this time.
0 commit comments