nvim: wrap is off by default now
This commit is contained in:
parent
b482328380
commit
f247b89efd
2 changed files with 5 additions and 5 deletions
|
@ -51,9 +51,6 @@ return require('packer').startup(function()
|
||||||
require('blake.lsp').lspconfig()
|
require('blake.lsp').lspconfig()
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
use { -- Icons for each entry in the completion menu
|
|
||||||
'onsails/lspkind-nvim',
|
|
||||||
}
|
|
||||||
use { -- compe
|
use { -- compe
|
||||||
'hrsh7th/nvim-cmp',
|
'hrsh7th/nvim-cmp',
|
||||||
config = function()
|
config = function()
|
||||||
|
@ -70,6 +67,9 @@ return require('packer').startup(function()
|
||||||
'hrsh7th/cmp-look',
|
'hrsh7th/cmp-look',
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
use { -- Icons for each entry in the completion menu
|
||||||
|
'onsails/lspkind-nvim',
|
||||||
|
}
|
||||||
use { -- function parameter previews
|
use { -- function parameter previews
|
||||||
'ray-x/lsp_signature.nvim',
|
'ray-x/lsp_signature.nvim',
|
||||||
after = 'nvim-lspconfig',
|
after = 'nvim-lspconfig',
|
||||||
|
@ -82,7 +82,7 @@ return require('packer').startup(function()
|
||||||
}
|
}
|
||||||
use { -- ALE: Support for lots of linters, etc
|
use { -- ALE: Support for lots of linters, etc
|
||||||
'dense-analysis/ale',
|
'dense-analysis/ale',
|
||||||
ft = {'sh', 'zsh', 'zshrc', 'bashrc', 'bash', 'html', 'markdown', 'vim', 'lua', 'tex'},
|
ft = {'sh', 'zsh', 'zshrc', 'bashrc', 'bash', 'html', 'vim', 'lua', 'tex'},
|
||||||
config = function()
|
config = function()
|
||||||
vim.g.ale_disable_lsp = 1
|
vim.g.ale_disable_lsp = 1
|
||||||
end
|
end
|
||||||
|
|
|
@ -17,7 +17,7 @@ vim.cmd [[
|
||||||
set hidden
|
set hidden
|
||||||
set ignorecase
|
set ignorecase
|
||||||
set smartcase
|
set smartcase
|
||||||
set wrap
|
set nowrap
|
||||||
set linebreak
|
set linebreak
|
||||||
" set guicursor= " always use the block cursor
|
" set guicursor= " always use the block cursor
|
||||||
syntax enable
|
syntax enable
|
||||||
|
|
Loading…
Add table
Reference in a new issue