This commit is contained in:
Aram Markarov
2025-12-11 19:27:50 +01:00
parent c18e540835
commit a58c111ddd
7 changed files with 8 additions and 11 deletions
+3 -1
View File
@@ -18,7 +18,7 @@ vim.opt.signcolumn = "yes:1"
vim.opt.isfname:append("@-@")
vim.opt.updatetime = 50
vim.opt.textwidth = 0
vim.opt.colorcolumn = "80"
vim.opt.colorcolumn = "100"
vim.opt.formatoptions = "rqnj"
vim.o.sessionoptions =
"blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions"
@@ -48,3 +48,5 @@ local sep = is_windows and "\\" or "/"
local delim = is_windows and ";" or ":"
vim.env.PATH = table.concat({vim.fn.stdpath "data", "mason", "bin"}, sep) ..
delim .. vim.env.PATH
vim.api.nvim_create_user_command('Nf', function() vim.cmd('Neoformat') end, {})