mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
13 lines
217 B
Lua
13 lines
217 B
Lua
|
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")
|