Update tmux keybindings and a few nvim settings/mappings

This commit is contained in:
david
2025-08-26 12:04:22 -05:00
parent e884dc09e1
commit 26b0fd8b40
4 changed files with 17 additions and 12 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