wip
This commit is contained in:
parent
bcdd3cdbd7
commit
ac80409bb9
10 changed files with 292 additions and 138 deletions
8
init.lua
8
init.lua
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue