diff options
| author | seth <[email protected]> | 2022-08-17 19:01:57 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2022-08-21 14:15:37 -0400 |
| commit | d99f98423439020e7bd5fdae0493aa5da9d9bf14 (patch) | |
| tree | e25b40d44afe36117a0ceefa603f5b3923a8886e /.config/nvim/init.lua | |
| parent | a6a978410d0daecff139a3ab971dc94c75427eb7 (diff) | |
refactor
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 |
