diff options
author | Christian Segundo | 2025-01-14 18:31:31 +0100 |
---|---|---|
committer | Christian Segundo | 2025-01-14 18:31:31 +0100 |
commit | aa5f7dbe8da470007c016b12ee4572748b09a59a (patch) | |
tree | 29cbca823206a9849cb659297418ff6ea503af51 /lua/core/init.lua | |
parent | 34b213b45baf9370f26d45729b819974948402ba (diff) | |
download | config-aa5f7dbe8da470007c016b12ee4572748b09a59a.tar.gz |
add undercurl support
Diffstat (limited to 'lua/core/init.lua')
-rw-r--r-- | lua/core/init.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lua/core/init.lua b/lua/core/init.lua index 16dfab5..7543052 100644 --- a/lua/core/init.lua +++ b/lua/core/init.lua @@ -1,6 +1,12 @@ ----------------------------------------------------------- -- General ----------------------------------------------------------- +-- Force undercurl support +-- https://vimdoc.sourceforge.net/htmldoc/term.html#t_Cs +-- https://vimdoc.sourceforge.net/htmldoc/term.html#t_Ce +vim.cmd([[let &t_Cs = "\e[4:3m"]]) +vim.cmd([[let &t_Ce = "\e[4:0m"]]) + vim.opt.mouse = "a" -- Enable mouse support vim.opt.clipboard = "unnamedplus" -- Copy/paste to system clipboard vim.opt.termguicolors = true -- Enable 24-bit RGB colors |