removed luasnippet, fixed lsp keybinds.

This commit is contained in:
Gabe Venberg 2021-12-15 11:30:08 -06:00
parent 8322dfa4e1
commit d80d290fe2
4 changed files with 14 additions and 19 deletions

View file

@ -88,10 +88,8 @@ return require('packer').startup(function(use)
use {'hrsh7th/nvim-cmp',
requires = {
-- 'neovim/nvim-lspconfig',
'neovim/nvim-lspconfig',
'hrsh7th/cmp-nvim-lsp',
'saadparwaiz1/cmp_luasnip',
'L3MON4D3/LuaSnip'
}
}
@ -158,7 +156,16 @@ return require('packer').startup(function(use)
config=function() require('spellsitter').setup() end
}
use 'lukas-reineke/indent-blankline.nvim'
use {'lukas-reineke/indent-blankline.nvim',
config=function()
vim.opt.list = true
vim.opt.listchars:append("eol:↴")
require('indent_blankline').setup{
show_end_of_line=true,
show_current_context=true
}
end
}
use 'bluz71/vim-moonfly-colors'