summaryrefslogtreecommitdiff
path: root/lua/user/options.lua
diff options
context:
space:
mode:
authorVito G. Graffagnino <vito@graffagnino.xyz>2022-05-28 11:57:23 +0100
committerVito G. Graffagnino <vito@graffagnino.xyz>2022-05-28 11:57:23 +0100
commited7eee18e3833dba8ef02e3a669a582f527bcafd (patch)
treee8749f1618d60a479d49f43acb52c66cd9a4e495 /lua/user/options.lua
parent6fbc8c23123a6b44590a3fa6c656c2f5b98ae89e (diff)
parentdeaf6a9824ff47756379c00f430e784f059b581c (diff)
Merge branch 'vgg' into 11-gitsigns11-gitsigns
Diffstat (limited to 'lua/user/options.lua')
-rw-r--r--lua/user/options.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/lua/user/options.lua b/lua/user/options.lua
index 6b38e23..cf23784 100644
--- a/lua/user/options.lua
+++ b/lua/user/options.lua
@@ -7,16 +7,16 @@ local options = {
fileencoding = "utf-8", -- the encoding written to a file
hlsearch = true, -- highlight all matches on previous search pattern
ignorecase = true, -- ignore case in search patterns
- mouse = "a", -- allow the mouse to be used in neovim
+ mouse = "", -- allow the mouse to be used in neovim
pumheight = 10, -- pop up menu height
- showmode = false, -- we don't need to see things like -- INSERT -- anymore
+ showmode = true, -- we don't need to see things like -- INSERT -- anymore
showtabline = 2, -- always show tabs
smartcase = true, -- smart case
smartindent = true, -- make indenting smarter again
splitbelow = true, -- force all horizontal splits to go below current window
splitright = true, -- force all vertical splits to go to the right of current window
swapfile = false, -- creates a swapfile
- -- termguicolors = true, -- set term gui colors (most terminals support this)
+ termguicolors = true, -- set term gui colors (most terminals support this)
timeoutlen = 1000, -- time to wait for a mapped sequence to complete (in milliseconds)
undofile = true, -- enable persistent undo
updatetime = 300, -- faster completion (4000ms default)
@@ -26,7 +26,7 @@ local options = {
tabstop = 2, -- insert 2 spaces for a tab
cursorline = true, -- highlight the current line
number = true, -- set numbered lines
- relativenumber = false, -- set relative numbered lines
+ relativenumber = true, -- set relative numbered lines
numberwidth = 4, -- set number column width to 2 {default 4}
signcolumn = "yes", -- always show the sign column, otherwise it would shift the text each time
wrap = false, -- display lines as one long line