Skip to content

Commit 5c7ed4a

Browse files
committed
Update dotfiles
1 parent 3fecc12 commit 5c7ed4a

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

nvim/.config/nvim/init.vim

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Plug 'nvim-lua/popup.nvim'
88
Plug 'nvim-lua/plenary.nvim'
99
Plug 'nvim-telescope/telescope.nvim'
1010

11+
Plug 'folke/todo-comments.nvim'
12+
1113
Plug 'neovim/nvim-lspconfig'
1214
Plug 'hrsh7th/nvim-compe'
1315

nvim/.config/nvim/plugin/lsp.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ lsp.tsserver.setup {
55
on_attach = on_attach,
66
root_dir = lsp.util.root_pattern("package.json"),
77
}
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+
-- }
1212
lsp.gopls.setup{ }
1313
lsp.graphql.setup{ }
1414
lsp.dockerls.setup{ }

nvim/.config/nvim/plugin/telescope.vim

+3
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ nnoremap <Leader>pf :lua require('telescope.builtin').find_files()<CR>
55
nnoremap <leader>pw :lua require('telescope.builtin').grep_string { search = vim.fn.expand("<cword>") }<CR>
66
nnoremap <leader>pb :lua require('telescope.builtin').buffers()<CR>
77
nnoremap <leader>vh :lua require('telescope.builtin').help_tags()<CR>
8+
9+
lua require("todo-comments").setup{}
10+
nnoremap <C-t> :TodoTelescope<CR>

zsh/.zshrc

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH"
4343
export BUN_INSTALL="/Users/tim/.bun"
4444
export PATH="$BUN_INSTALL/bin:$PATH"
4545

46+
eval "$(fnm env --use-on-cd)"
47+
4648
export NOMAD_ADDR=http://10.10.0.16:4646
4749
export CONSUL_HTTP_ADDR=http://10.10.0.16:8500
4850
export VAULT_ADDR=https://10.10.0.16:8200

0 commit comments

Comments
 (0)