diff options
author | Damjan 9000 <damjan.9000@gmail.com> | 2024-03-18 18:50:47 +0100 |
---|---|---|
committer | Damjan 9000 <damjan.9000@gmail.com> | 2024-03-18 18:50:47 +0100 |
commit | d20d58c3e8e3103aed891f4477dbb24f5839c3f8 (patch) | |
tree | c5887bf5734bb65a2da35e860465c75becb07ff5 /lua/options.lua | |
parent | b59b1d2a3dc55c766388457c8c4f0c2d2975aa90 (diff) | |
parent | 65a5ac404b56c4718d79f65ac642e19e89346eda (diff) |
Merge 'upstream' Some suggestions and capitalised a few words
Diffstat (limited to 'lua/options.lua')
-rw-r--r-- | lua/options.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lua/options.lua b/lua/options.lua index 986a4b4..c97d75f 100644 --- a/lua/options.lua +++ b/lua/options.lua @@ -5,14 +5,14 @@ -- Make line numbers default vim.opt.number = true --- You can also add relative line numbers, for help with jumping. +-- You can also add relative line numbers, to help with jumping. -- Experiment for yourself to see if you like it! -- vim.opt.relativenumber = true -- Enable mouse mode, can be useful for resizing splits for example! vim.opt.mouse = 'a' --- Don't show the mode, since it's already in status line +-- Don't show the mode, since it's already in the status line vim.opt.showmode = false -- Sync clipboard between OS and Neovim. @@ -26,7 +26,7 @@ vim.opt.breakindent = true -- Save undo history vim.opt.undofile = true --- Case-insensitive searching UNLESS \C or capital in search +-- Case-insensitive searching UNLESS \C or one or more capital letters in the search term vim.opt.ignorecase = true vim.opt.smartcase = true @@ -44,7 +44,7 @@ vim.opt.timeoutlen = 300 vim.opt.splitright = true vim.opt.splitbelow = true --- Sets how neovim will display certain whitespace in the editor. +-- Sets how neovim will display certain whitespace characters in the editor. -- See `:help 'list'` -- and `:help 'listchars'` vim.opt.list = true |