mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[nvim-new] Start work
This commit is contained in:
parent
040cf4f54a
commit
711aa4510d
5 changed files with 88 additions and 0 deletions
12
nvim-new/lua/aly/options.lua
Normal file
12
nvim-new/lua/aly/options.lua
Normal 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")
|
Loading…
Add table
Add a link
Reference in a new issue