aboutsummaryrefslogtreecommitdiff
path: root/lua/options.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/options.lua')
-rw-r--r--lua/options.lua8
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