Add nvim-cmp
This commit is contained in:
		
							parent
							
								
									4f3fe1828c
								
							
						
					
					
						commit
						54b0c6a548
					
				
					 1 changed files with 40 additions and 9 deletions
				
			
		| 
						 | 
					@ -4,8 +4,11 @@ local au = vim.api.nvim_create_autocmd
 | 
				
			||||||
local plug = vim.fn['plug#']
 | 
					local plug = vim.fn['plug#']
 | 
				
			||||||
vim.call('plug#begin', '~/.config/nvim/plugged')
 | 
					vim.call('plug#begin', '~/.config/nvim/plugged')
 | 
				
			||||||
plug('https://gitlab.com/rawleyIfowler/melange')
 | 
					plug('https://gitlab.com/rawleyIfowler/melange')
 | 
				
			||||||
 | 
					plug('ap/vim-css-color')
 | 
				
			||||||
plug('clojure-vim/clojure.vim', {['for'] = 'clojure'})
 | 
					plug('clojure-vim/clojure.vim', {['for'] = 'clojure'})
 | 
				
			||||||
plug('scrooloose/nerdtree', {on = 'NERDTreeToggle'})
 | 
					plug('scrooloose/nerdtree', { on = 'NERDTreeToggle'})
 | 
				
			||||||
 | 
					plug('fatih/vim-go', { ['for'] = 'go' })
 | 
				
			||||||
 | 
					plug('tree-sitter/tree-sitter')
 | 
				
			||||||
plug('tpope/vim-surround')
 | 
					plug('tpope/vim-surround')
 | 
				
			||||||
plug('tpope/vim-fireplace', {['for'] = 'clojure'})
 | 
					plug('tpope/vim-fireplace', {['for'] = 'clojure'})
 | 
				
			||||||
plug('neovim/nvim-lsp')
 | 
					plug('neovim/nvim-lsp')
 | 
				
			||||||
| 
						 | 
					@ -19,8 +22,13 @@ plug('guns/vim-clojure-static', {['for'] = 'clojure'})
 | 
				
			||||||
plug('luochen1990/rainbow', {['for'] = 'clojure'})
 | 
					plug('luochen1990/rainbow', {['for'] = 'clojure'})
 | 
				
			||||||
plug('docunext/closetag.vim')
 | 
					plug('docunext/closetag.vim')
 | 
				
			||||||
plug('norcalli/nvim_utils')
 | 
					plug('norcalli/nvim_utils')
 | 
				
			||||||
 | 
					plug('hrsh7th/nvim-cmp')
 | 
				
			||||||
 | 
					plug('hrsh7th/cmp-buffer')
 | 
				
			||||||
 | 
					plug('hrsh7th/cmp-nvim-lsp')
 | 
				
			||||||
 | 
					plug('l3mon4d3/luasnip')
 | 
				
			||||||
vim.call('plug#end')
 | 
					vim.call('plug#end')
 | 
				
			||||||
pcall(require, 'nvim_utils') 
 | 
					pcall(require, 'nvim_utils') 
 | 
				
			||||||
 | 
					local cmp = require('cmp')
 | 
				
			||||||
-- Basic editor configurations
 | 
					-- Basic editor configurations
 | 
				
			||||||
set.tabstop = 4
 | 
					set.tabstop = 4
 | 
				
			||||||
set.shiftwidth = 4
 | 
					set.shiftwidth = 4
 | 
				
			||||||
| 
						 | 
					@ -33,18 +41,41 @@ set.autowrite = true
 | 
				
			||||||
set.ai = true
 | 
					set.ai = true
 | 
				
			||||||
set.wildignore = {'*/cache/*', '*/tmp*'}
 | 
					set.wildignore = {'*/cache/*', '*/tmp*'}
 | 
				
			||||||
-- Keybindings
 | 
					-- Keybindings
 | 
				
			||||||
function nnoremap(mode, lhs, rhs, opts)
 | 
					function map(mode, lhs, rhs, opts)
 | 
				
			||||||
    local options = { noremap = true }
 | 
					    options = {}
 | 
				
			||||||
    if opts then
 | 
					    if opts then
 | 
				
			||||||
        options = vim.tbl_extend("force", options, opts)
 | 
					        options = vim.tbl_extend("force", options, opts)
 | 
				
			||||||
    end
 | 
					    end
 | 
				
			||||||
    vim.api.nvim_set_keymap(mode, lhs, rhs, options)
 | 
					    vim.api.nvim_set_keymap(mode, lhs, rhs, options)
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
---- NERDTree
 | 
					---- NERDTree
 | 
				
			||||||
nnoremap('n', '<S-w>', ':NERDTreeToggle<cr>')
 | 
					map('n', '<S-w>', ':NERDTreeToggle<cr>', { noremap = true })
 | 
				
			||||||
nnoremap('n', '<S-q>', ':NERDTreeClose<cr>')
 | 
					map('n', '<S-q>', ':NERDTreeClose<cr>', { noremap = true })
 | 
				
			||||||
---- Ripgrep
 | 
					---- Ripgrep
 | 
				
			||||||
nnoremap('n', '<C-f>', ':Rg<cr>')
 | 
					map('n', '<C-f>', ':Rg<cr>')
 | 
				
			||||||
 | 
					---- Auto-complete
 | 
				
			||||||
 | 
					cmp.setup({
 | 
				
			||||||
 | 
					    snippet = {
 | 
				
			||||||
 | 
					        expand = function(a)
 | 
				
			||||||
 | 
					            -- Enable the lua snips engine
 | 
				
			||||||
 | 
					            require('luasnip').lsp_expand(a.body)
 | 
				
			||||||
 | 
					        end
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    mapping = cmp.mapping.preset.insert({
 | 
				
			||||||
 | 
					        ['<Tab>'] = cmp.mapping(cmp.mapping.select_next_item(), { 'i', 'c' }),
 | 
				
			||||||
 | 
					        ['<CR>'] = cmp.mapping.confirm({ select = true }),
 | 
				
			||||||
 | 
					        ['<C-Space>'] = cmp.mapping.complete()
 | 
				
			||||||
 | 
					    }),
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    sources = {
 | 
				
			||||||
 | 
					        -- Get completions from these sources
 | 
				
			||||||
 | 
					        { name = 'buffer' },
 | 
				
			||||||
 | 
					        { name = 'nvim_lsp' },
 | 
				
			||||||
 | 
					        { name = 'luasnip' }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					})
 | 
				
			||||||
 | 
					local cmp_capabilities = require('cmp_nvim_lsp').update_capabilities(vim.lsp.protocol.make_client_capabilities())
 | 
				
			||||||
-- Colors
 | 
					-- Colors
 | 
				
			||||||
vim.cmd('syntax enable')
 | 
					vim.cmd('syntax enable')
 | 
				
			||||||
vim.cmd('colorscheme melange')
 | 
					vim.cmd('colorscheme melange')
 | 
				
			||||||
| 
						 | 
					@ -61,8 +92,8 @@ vim.cmd([[
 | 
				
			||||||
        :RainbowToggle
 | 
					        :RainbowToggle
 | 
				
			||||||
    endif
 | 
					    endif
 | 
				
			||||||
]])
 | 
					]])
 | 
				
			||||||
require('lspconfig')['clojure_lsp'].setup{}
 | 
					require('lspconfig')['clojure_lsp'].setup{ capabilities = cmp_capabilities }
 | 
				
			||||||
-- Go specific configurations
 | 
					-- Go specific configurations
 | 
				
			||||||
require('lspconfig')['gopls'].setup{}
 | 
					require('lspconfig')['gopls'].setup{ capabilities = cmp_capabilities }
 | 
				
			||||||
-- C/C++ specific configurations
 | 
					-- C/C++ specific configurations
 | 
				
			||||||
require('lspconfig')['clangd'].setup{}
 | 
					require('lspconfig')['clangd'].setup{ capabilities = cmp_capabilities }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue