Added tmux-sessionator and updated tmux config

This commit is contained in:
Michael Housh
2023-10-02 22:47:32 -04:00
parent f0a5d85dea
commit 353b669f27
3 changed files with 39 additions and 4 deletions

View File

@@ -4,8 +4,8 @@ local fn = vim.fn
vim.cmd.set('inccommand=split')
o.updatetime = 300 -- faster completion
o.timeoutlen = 500 -- time to wait for a mapped sequence to complete (in milliseconds)
o.ttimeoutlen = 50 -- Time in milliseconds to wait for a key code sequence to complete
--o.timeoutlen = 500 -- time to wait for a mapped sequence to complete (in milliseconds)
--o.ttimeoutlen = 50 -- Time in milliseconds to wait for a key code sequence to complete
o.backup = false -- creates a backup file
o.swapfile = false -- enable/disable swap file creation
o.dir = fn.stdpath("data") .. "/swp" -- swap file directory
@@ -35,7 +35,7 @@ o.termguicolors = true -- set term gui colors (most terminals support this)
o.cursorline = true -- highlight the current line
o.scrolloff = 8 -- Minimal number of screen lines to keep above and below the cursor
o.sidescrolloff = 5 -- The minimal number of columns to scroll horizontally
o.hlsearch = true -- highlight all matches on previous search pattern
o.hlsearch = false -- highlight all matches on previous search pattern
o.ignorecase = true -- ignore case in search patterns
o.foldenable = false -- disable folding; enable with zi
o.foldmethod = "expr"