diff options
author | mhsn <mail@mhsn.net> | 2025-02-13 11:41:43 +0000 |
---|---|---|
committer | mhsn <mail@mhsn.net> | 2025-02-13 11:41:43 +0000 |
commit | 957a8515e4de0962edf95fc9206505b51c9dd983 (patch) | |
tree | b000f3224464286edaf8fe6c22062ca4f3c3d935 | |
parent | c49e85bf8d0a2aefe66e6b907de6b73a335069e8 (diff) | |
download | nvim-957a8515e4de0962edf95fc9206505b51c9dd983.tar.gz nvim-957a8515e4de0962edf95fc9206505b51c9dd983.zip |
lowercase the comments
-rw-r--r-- | lua/config/opt.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lua/config/opt.lua b/lua/config/opt.lua index 800c6d8..36777ee 100644 --- a/lua/config/opt.lua +++ b/lua/config/opt.lua @@ -1,4 +1,4 @@ --- Relative line numbers +-- relative line numbers vim.opt.number = true vim.opt.relativenumber = true @@ -9,18 +9,18 @@ vim.opt.shiftwidth = 4 vim.opt.smarttab = true vim.opt.expandtab = true --- Smart indenting +-- smart indenting vim.opt.autoindent = true vim.opt.smartindent = true --- No line wrap +-- no line wrap vim.opt.wrap = false --- Search highlighting +-- search highlighting vim.opt.hlsearch = false vim.opt.incsearch = true --- Keep 9 lines on top/bottom +-- keep 9 lines on top/bottom vim.opt.scrolloff = 9 -- 80 char col |