Add autocomplete support
This commit is contained in:
parent
467933a14e
commit
2660d9e7c4
42
nvim/nvim-cmp.vimrc
Normal file
42
nvim/nvim-cmp.vimrc
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
set completeopt=menu,menuone,noselect
|
||||||
|
|
||||||
|
lua <<EOF
|
||||||
|
-- Setup nvim-cmp.
|
||||||
|
local cmp = require'cmp'
|
||||||
|
|
||||||
|
cmp.setup({
|
||||||
|
snippet = {
|
||||||
|
expand = function(args)
|
||||||
|
-- For `vsnip` user.
|
||||||
|
vim.fn["vsnip#anonymous"](args.body)
|
||||||
|
|
||||||
|
-- For `luasnip` user.
|
||||||
|
-- require('luasnip').lsp_expand(args.body)
|
||||||
|
|
||||||
|
-- For `ultisnips` user.
|
||||||
|
-- vim.fn["UltiSnips#Anon"](args.body)
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
mapping = {
|
||||||
|
['<C-d>'] = cmp.mapping.scroll_docs(-4),
|
||||||
|
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
||||||
|
['<C-Space>'] = cmp.mapping.complete(),
|
||||||
|
['<C-e>'] = cmp.mapping.close(),
|
||||||
|
['<CR>'] = cmp.mapping.confirm({ select = true }),
|
||||||
|
},
|
||||||
|
sources = {
|
||||||
|
{ name = 'nvim_lsp' },
|
||||||
|
|
||||||
|
-- For vsnip user.
|
||||||
|
{ name = 'vsnip' },
|
||||||
|
|
||||||
|
-- For luasnip user.
|
||||||
|
-- { name = 'luasnip' },
|
||||||
|
|
||||||
|
-- For ultisnips user.
|
||||||
|
-- { name = 'ultisnips' },
|
||||||
|
|
||||||
|
{ name = 'buffer' },
|
||||||
|
}
|
||||||
|
})
|
||||||
|
EOF
|
@ -5,7 +5,6 @@ Plug 'jiangmiao/auto-pairs'
|
|||||||
Plug 'leafgarland/typescript-vim', { 'for': 'typescript' }
|
Plug 'leafgarland/typescript-vim', { 'for': 'typescript' }
|
||||||
Plug 'leafoftree/vim-svelte-plugin', { 'for': 'svelte' }
|
Plug 'leafoftree/vim-svelte-plugin', { 'for': 'svelte' }
|
||||||
Plug 'lukas-reineke/indent-blankline.nvim'
|
Plug 'lukas-reineke/indent-blankline.nvim'
|
||||||
Plug 'neovim/nvim-lspconfig'
|
|
||||||
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
|
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
|
||||||
Plug 'posva/vim-vue', { 'for': 'vue' }
|
Plug 'posva/vim-vue', { 'for': 'vue' }
|
||||||
Plug 'ron-rs/ron.vim', { 'for': 'ron' }
|
Plug 'ron-rs/ron.vim', { 'for': 'ron' }
|
||||||
@ -18,6 +17,14 @@ Plug 'tpope/vim-surround'
|
|||||||
Plug 'vim-test/vim-test'
|
Plug 'vim-test/vim-test'
|
||||||
Plug 'wakatime/vim-wakatime'
|
Plug 'wakatime/vim-wakatime'
|
||||||
|
|
||||||
|
" LSP and autocomplete
|
||||||
|
Plug 'neovim/nvim-lspconfig' |
|
||||||
|
\ Plug 'hrsh7th/cmp-nvim-lsp' |
|
||||||
|
\ Plug 'hrsh7th/cmp-buffer' |
|
||||||
|
\ Plug 'hrsh7th/nvim-cmp' |
|
||||||
|
\ Plug 'hrsh7th/cmp-vsnip' |
|
||||||
|
\ Plug 'hrsh7th/vim-vsnip'
|
||||||
|
|
||||||
" Lightline
|
" Lightline
|
||||||
Plug 'itchyny/lightline.vim' |
|
Plug 'itchyny/lightline.vim' |
|
||||||
\ Plug 'albertomontesg/lightline-asyncrun' |
|
\ Plug 'albertomontesg/lightline-asyncrun' |
|
||||||
|
6
vimrc
6
vimrc
@ -68,6 +68,12 @@ if filereadable(expand("~/.config/nvim/plugins.vimrc"))
|
|||||||
endif
|
endif
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
" Autocomplete
|
||||||
|
if filereadable(expand("~/.config/nvim/nvim-cmp.vimrc"))
|
||||||
|
source ~/.config/nvim/nvim-cmp.vimrc
|
||||||
|
endif
|
||||||
|
|
||||||
|
" LSP
|
||||||
if filereadable(expand("~/.config/nvim/lspconfig.vimrc"))
|
if filereadable(expand("~/.config/nvim/lspconfig.vimrc"))
|
||||||
source ~/.config/nvim/lspconfig.vimrc
|
source ~/.config/nvim/lspconfig.vimrc
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user