dotfiles/home/.config/nvim/lua/pluginconf/completion.lua

5 lines
166 B
Lua
Raw Normal View History

2021-08-02 16:55:11 +03:00
vim.o.completeopt = 'menuone,noinsert,noselect'
2021-01-30 22:52:22 +02:00
2021-08-02 16:55:11 +03:00
-- Enable for all buffers (for now)
vim.api.nvim_command('autocmd BufEnter * lua require\'completion\'.on_attach()')