Compare commits

..

No commits in common. "main" and "lazyvim" have entirely different histories.

2 changed files with 4 additions and 10 deletions

View file

@ -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,
})

View file

@ -1,11 +1,5 @@
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.o.textwidth = 80
vim.o.colorcolumn = '+1'
vim.g.lazyvim_prettier_needs_config = true