diff options
| author | seth <[email protected]> | 2023-03-12 01:10:20 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-03-12 01:10:20 -0500 |
| commit | bb5a9739aee5735ee7446d6688fc1e3ca8971f3b (patch) | |
| tree | a747389f9ee7dda42233db3ae8b0206fb9e12e1e /users/seth/programs/neovim/config/init.lua | |
| parent | e94f47b956a19a44106914dccbbf88004287539f (diff) | |
split neovim config
Diffstat (limited to 'users/seth/programs/neovim/config/init.lua')
| -rw-r--r-- | users/seth/programs/neovim/config/init.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/users/seth/programs/neovim/config/init.lua b/users/seth/programs/neovim/config/init.lua new file mode 100644 index 0000000..34590e6 --- /dev/null +++ b/users/seth/programs/neovim/config/init.lua @@ -0,0 +1,18 @@ +local cmd = vim.cmd +local opt = vim.opt + +-- text options +opt.tabstop = 2 +opt.shiftwidth = 2 +opt.expandtab = false +opt.smartindent = true +opt.wrap = false + +-- appearance +opt.syntax = "on" +cmd("filetype plugin indent on") +opt.termguicolors = true + +require("getchoo.keybinds") +require("getchoo.plugins") +require("getchoo.filetypes") |
