This commit is contained in:
pika 2025-06-02 12:46:09 +02:00
parent bcdd3cdbd7
commit ac80409bb9
10 changed files with 292 additions and 138 deletions

View file

@ -10,4 +10,12 @@ else
-- ╰──────────────────────────────────────────────────────╯
vim.cmd.colorscheme("tokyodark")
vim.opt.formatoptions:append("c") -- Auto-wrap comments
vim.opt.formatoptions:append("r") -- Auto-insert comment leader on Enter
vim.opt.formatoptions:append("o") -- Auto-insert comment leader with 'o'/'O'
vim.opt.formatoptions:append("q") -- Allow formatting of comments with 'gq'
vim.opt.formatoptions:remove("t") -- Don't auto-wrap text (only comments)
vim.opt.textwidth = 80
end