diff options
Diffstat (limited to '.config/nvim/init.lua')
| -rw-r--r-- | .config/nvim/init.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 1385b04..3de2473 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -8,15 +8,15 @@ local opt = vim.opt require("getchoo.plugins") require("getchoo.lsp") --- options +-- text options opt.tabstop = 2 opt.shiftwidth = 2 opt.expandtab = true opt.smartindent = true opt.wrap = false -opt.termguicolors = true -- appearance -cmd([[syntax on]]) -cmd([[filetype plugin indent on]]) +opt.syntax = "on" cmd([[colorscheme nord]]) +opt.termguicolors = true +opt.relativenumber = true |
