diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-05-28 12:40:17 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-05-28 12:40:17 +0100 |
| commit | 993408daee54ae2a245b97602aaf73e6cdf3d8e1 (patch) | |
| tree | 24da27cdf2999477ebb349ad2fc9e621e1e4985e /lua/user/options.lua | |
| parent | 24e1856862e859b60cd5b38fa6befa00f75de89a (diff) | |
| parent | 418fed300187f0cd2dbd8d8fc791dd4aa08b70fe (diff) | |
Merge branch 'vgg' into 22-autocommands22-autocommands
Diffstat (limited to 'lua/user/options.lua')
| -rw-r--r-- | lua/user/options.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lua/user/options.lua b/lua/user/options.lua index 799aa9d..cf23784 100644 --- a/lua/user/options.lua +++ b/lua/user/options.lua @@ -7,17 +7,17 @@ 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) - timeoutlen = 100, -- time to wait for a mapped sequence to complete (in milliseconds) + 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) writebackup = false, -- if a file is being edited by another program (or was written to file while editing with another program), it is not allowed to be edited @@ -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 |
