Added nvim config
This commit is contained in:
25
.config/nvim/lua/jirr02/core/options.lua
Normal file
25
.config/nvim/lua/jirr02/core/options.lua
Normal file
@@ -0,0 +1,25 @@
|
||||
local opt = vim.opt
|
||||
|
||||
opt.relativenumber = true
|
||||
opt.number = true
|
||||
|
||||
opt.tabstop = 2
|
||||
opt.shiftwidth = 2
|
||||
opt.expandtab = true
|
||||
opt.autoindent = true
|
||||
|
||||
opt.ignorecase = true
|
||||
opt.smartcase = true
|
||||
|
||||
opt.termguicolors = true
|
||||
opt.background = "dark"
|
||||
opt.signcolumn = "yes"
|
||||
|
||||
opt.backspace = "indent,eol,start"
|
||||
|
||||
opt.clipboard:append("unnamedplus")
|
||||
|
||||
opt.splitright = true
|
||||
opt.splitbelow = true
|
||||
|
||||
opt.iskeyword:append("-")
|
||||
Reference in New Issue
Block a user