diff options
| author | seth <[email protected]> | 2023-01-23 15:44:26 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-01-23 16:44:20 -0500 |
| commit | 731f682628837e6934b8b04b470211d3866fd0d8 (patch) | |
| tree | 29cce38fc8ff6636b27edf8830bba6d4fd7efe38 /users/seth/programs/neovim/config/init.lua | |
| parent | 79b1d22cc9eb3752ae798d5ca9e6eeefeb86799e (diff) | |
update neovim config
Diffstat (limited to 'users/seth/programs/neovim/config/init.lua')
| -rw-r--r-- | users/seth/programs/neovim/config/init.lua | 23 |
1 files changed, 23 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..1dbf9bc --- /dev/null +++ b/users/seth/programs/neovim/config/init.lua @@ -0,0 +1,23 @@ +-- +-- getchoo's neovim config (but in lua :p) +-- + +local cmd = vim.cmd +local opt = vim.opt + +vim.g.use_lsp_plugins = false +vim.g.use_mason = false + +require("getchoo") + +-- 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 |
