1
0
Fork 0

Fix options + Add lsp-install

This commit is contained in:
Florian RICHER 2021-06-24 09:05:08 +02:00
parent 222f2c316b
commit 8ca7c95dd4
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,4 @@
local function init(){ local function init()
cmd('colorscheme moonlight') cmd('colorscheme moonlight')
opt.completeopt = {'menuone', 'noinsert', 'noselect'} -- Completion options (for deoplete) opt.completeopt = {'menuone', 'noinsert', 'noselect'} -- Completion options (for deoplete)
@ -21,7 +21,7 @@ local function init(){
opt.termguicolors = true -- True color support opt.termguicolors = true -- True color support
opt.wildmode = {'list', 'longest'} -- Command-line completion mode opt.wildmode = {'list', 'longest'} -- Command-line completion mode
opt.wrap = false -- Disable line wrap opt.wrap = false -- Disable line wrap
} end
return { return {
init = init init = init

View file

@ -11,6 +11,7 @@ function install_packages()
use {'dracula/vim'} use {'dracula/vim'}
use {'whatyouhide/vim-gotham'} use {'whatyouhide/vim-gotham'}
use {'neovim/nvim-lspconfig'} use {'neovim/nvim-lspconfig'}
use {'kabouzeid/nvim-lspinstall'}
use {'hrsh7th/nvim-compe'} use {'hrsh7th/nvim-compe'}
use {'shaunsingh/moonlight.nvim'} use {'shaunsingh/moonlight.nvim'}