keybindings

This commit is contained in:
2026-03-08 14:57:30 +01:00
parent 1d4ce96108
commit 4957169193
3 changed files with 38 additions and 6 deletions

18
lua/core/options.lua Normal file
View File

@@ -0,0 +1,18 @@
-- ~/.config/nvim/lua/core/options.lua
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.signcolumn = "yes"
vim.opt.termguicolors = true
vim.opt.cursorline = true
vim.opt.ignorecase = true
vim.opt.smartcase = true
vim.opt.incsearch = true
vim.opt.hlsearch = false
vim.opt.splitright = true
vim.opt.splitbelow = true
vim.opt.updatetime = 200
vim.opt.timeoutlen = 400