Compare commits

...

2 commits

Author SHA1 Message Date
dc1951ee94
feat: Add some options 2025-03-16 17:47:37 -07:00
547c139f9c
docs: Add desc to autocmds 2025-03-16 17:30:54 -07:00
2 changed files with 10 additions and 4 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,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