nvim: wrap is off by default now

This commit is contained in:
PowerUser64 2021-10-26 02:51:13 -07:00
parent b482328380
commit f247b89efd
2 changed files with 5 additions and 5 deletions

View file

@ -51,9 +51,6 @@ return require('packer').startup(function()
require('blake.lsp').lspconfig()
end
}
use { -- Icons for each entry in the completion menu
'onsails/lspkind-nvim',
}
use { -- compe
'hrsh7th/nvim-cmp',
config = function()
@ -70,6 +67,9 @@ return require('packer').startup(function()
'hrsh7th/cmp-look',
}
}
use { -- Icons for each entry in the completion menu
'onsails/lspkind-nvim',
}
use { -- function parameter previews
'ray-x/lsp_signature.nvim',
after = 'nvim-lspconfig',
@ -82,7 +82,7 @@ return require('packer').startup(function()
}
use { -- ALE: Support for lots of linters, etc
'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()
vim.g.ale_disable_lsp = 1
end

View file

@ -17,7 +17,7 @@ vim.cmd [[
set hidden
set ignorecase
set smartcase
set wrap
set nowrap
set linebreak
" set guicursor= " always use the block cursor
syntax enable