Update tmux keybindings and a few nvim configs

This commit is contained in:
2025-08-26 12:04:22 -05:00
parent 1c8e6c2165
commit 624a06cc36
5 changed files with 18 additions and 13 deletions

View File

@@ -14,17 +14,18 @@ vim.opt.signcolumn = "yes" -- "auto", "yes", "no", "number"
vim.opt.laststatus = 2
vim.opt.splitright = true
vim.opt.splitbelow = true
vim.opt.nu = true
vim.opt.relativenumber = true
vim.opt.cursorline = true
vim.opt.cursorlineopt = "both"
vim.opt.smartindent = true
vim.opt.wrap = true
vim.opt.errorbells = false
vim.opt.visualbell = false
vim.opt.updatetime = 1000
vim.opt.nu = true
vim.opt.relativenumber = true
vim.opt.smartindent = true
vim.opt.wrap = true
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4