Compare commits

...

3 commits

Author SHA1 Message Date
74c1739c23 init.vim: tsserver 2021-11-17 12:13:07 -03:00
2642c9dc40 nvim: agregar fzf explicitamente 2021-11-17 12:12:47 -03:00
6d36583084 init.vim: <space>b Buffers 2021-11-17 12:00:55 -03:00
3 changed files with 6 additions and 1 deletions

View file

@ -61,7 +61,7 @@ local on_attach = function(client, bufnr)
buf_set_keymap('n', '<space>q', '<cmd>lua vim.lsp.diagnostic.set_loclist()<CR>', opts)
end
local servers = { 'zls', 'gopls' }
local servers = { 'zls', 'gopls', 'tsserver' }
for _, lsp in ipairs(servers) do
nvim_lsp[lsp].setup {
on_attach = on_attach,
@ -73,3 +73,4 @@ EOF
let g:fzf_layout = { 'down': '40%' }
noremap <space>f :Files<return>
noremap <space>b :Buffers<return>

@ -0,0 +1 @@
Subproject commit e4c3ecc57e99f4037199f11b384a7f8758d1a0ff

3
.gitmodules vendored
View file

@ -28,3 +28,6 @@
[submodule ".config/nvim/pack/plugins/start/vim-go"]
path = .config/nvim/pack/plugins/start/vim-go
url = https://github.com/fatih/vim-go
[submodule ".config/nvim/pack/plugins/start/fzf"]
path = .config/nvim/pack/plugins/start/fzf
url = https://github.com/junegunn/fzf