forked from nico/dots
nvim: added neovim configuration
This commit is contained in:
parent
7182c3a7a0
commit
0399226628
17 changed files with 579 additions and 0 deletions
17
stow/.config/nvim/lua/nico/opts.lua
Normal file
17
stow/.config/nvim/lua/nico/opts.lua
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
vim.opt.termguicolors = true
|
||||
|
||||
vim.opt.number = true
|
||||
vim.opt.relativenumber = true
|
||||
|
||||
vim.opt.clipboard = "unnamedplus"
|
||||
vim.opt.mouse = "a"
|
||||
vim.opt.cursorline = true
|
||||
|
||||
vim.opt.tabstop = 2
|
||||
vim.opt.softtabstop = 2
|
||||
vim.opt.shiftwidth = 2
|
||||
vim.opt.expandtab = true
|
||||
vim.opt.scrolloff = 4
|
||||
|
||||
vim.opt.hlsearch = false
|
||||
vim.opt.incsearch = true
|
||||
Loading…
Add table
Add a link
Reference in a new issue