mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
fix wierd Tmux/terminal esc-j/k line move issue
More details: https://github.com/LazyVim/LazyVim/discussions/163
This commit is contained in:
parent
879e29504d
commit
cf73189e12
1 changed files with 6 additions and 1 deletions
|
|
@ -49,7 +49,6 @@ opt.splitkeep = "screen"
|
||||||
opt.splitright = true -- Put new windows right of current
|
opt.splitright = true -- Put new windows right of current
|
||||||
opt.tabstop = 2 -- Number of spaces tabs count for
|
opt.tabstop = 2 -- Number of spaces tabs count for
|
||||||
opt.termguicolors = true -- True color support
|
opt.termguicolors = true -- True color support
|
||||||
opt.timeoutlen = 300
|
|
||||||
opt.undofile = true
|
opt.undofile = true
|
||||||
opt.undolevels = 10000
|
opt.undolevels = 10000
|
||||||
opt.updatetime = 200 -- Save swap file and trigger CursorHold
|
opt.updatetime = 200 -- Save swap file and trigger CursorHold
|
||||||
|
|
@ -91,3 +90,9 @@ vim.o.formatexpr = "v:lua.require'lazyvim.util'.format.formatexpr()"
|
||||||
|
|
||||||
-- Fix markdown indentation settings
|
-- Fix markdown indentation settings
|
||||||
vim.g.markdown_recommended_style = 0
|
vim.g.markdown_recommended_style = 0
|
||||||
|
|
||||||
|
-- wierd tmux esc-j/k line switch issue fix
|
||||||
|
-- https://github.com/LazyVim/LazyVim/discussions/163
|
||||||
|
opt.timeoutlen = 1000
|
||||||
|
opt.ttimeoutlen = 0
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue