[nvim-new] Start work

This commit is contained in:
Alyxia Sother 2023-08-28 22:02:52 +02:00
parent 040cf4f54a
commit 711aa4510d
No known key found for this signature in database
GPG key ID: 0B2497099595CAA5
5 changed files with 88 additions and 0 deletions

View file

@ -0,0 +1,12 @@
print("yes")
local options = {
termguicolors = true, -- how do I even use the editor without this?
}
for o, _ in pairs(options) do
vim.opt[o] = _
end
vim.cmd("filetype plugin indent on")
vim.cmd("syntax enable")