Compare commits
2 commits
c561bf48e7
...
dc1951ee94
Author | SHA1 | Date | |
---|---|---|---|
dc1951ee94 | |||
547c139f9c |
2 changed files with 10 additions and 4 deletions
|
@ -1,10 +1,10 @@
|
|||
-- Open help window in a vsplit to the right.
|
||||
vim.api.nvim_create_autocmd('BufWinEnter', {
|
||||
desc = 'Open help files in vertical split to the right',
|
||||
group = vim.api.nvim_create_augroup('help_window_right', {}),
|
||||
pattern = { '*.txt' },
|
||||
callback = function()
|
||||
if vim.o.filetype == 'help' then
|
||||
vim.cmd.wincmd 'L'
|
||||
vim.cmd.wincmd('L')
|
||||
end
|
||||
end,
|
||||
})
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
vim.o.textwidth = 80
|
||||
vim.o.colorcolumn = '+1'
|
||||
vim.opt.breakindent = true
|
||||
vim.opt.colorcolumn = '+1'
|
||||
vim.opt.completeopt = { 'menu', 'menuone', 'noselect', 'noinsert' }
|
||||
vim.opt.foldcolumn = '1'
|
||||
vim.opt.foldenable = true
|
||||
vim.opt.listchars = { tab = '->', trail = '·' }
|
||||
vim.opt.sidescroll = 1
|
||||
vim.opt.textwidth = 80
|
||||
|
||||
vim.g.lazyvim_prettier_needs_config = true
|
||||
|
||||
|
|
Loading…
Reference in a new issue