nvim: bootstrap minimal nix-first config
This commit is contained in:
parent
8a2e735875
commit
d90c74150f
14 changed files with 557 additions and 12 deletions
22
.config/nvim/lua/config/options.lua
Normal file
22
.config/nvim/lua/config/options.lua
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
local opt = vim.opt
|
||||
|
||||
opt.number = true
|
||||
opt.relativenumber = true
|
||||
opt.mouse = "a"
|
||||
opt.ignorecase = true
|
||||
opt.smartcase = true
|
||||
opt.tabstop = 4
|
||||
opt.shiftwidth = 4
|
||||
opt.expandtab = true
|
||||
opt.termguicolors = true
|
||||
opt.signcolumn = "yes"
|
||||
opt.updatetime = 250
|
||||
opt.timeoutlen = 300
|
||||
opt.splitright = true
|
||||
opt.splitbelow = true
|
||||
opt.scrolloff = 4
|
||||
opt.cursorline = true
|
||||
opt.wrap = false
|
||||
opt.undofile = true
|
||||
opt.clipboard = "unnamedplus"
|
||||
opt.completeopt = { "menu", "menuone", "noselect" }
|
||||
Loading…
Add table
Add a link
Reference in a new issue