nvim: added neovim configuration

This commit is contained in:
Nico 2025-05-03 16:15:57 +10:00
parent 7182c3a7a0
commit 0399226628
17 changed files with 579 additions and 0 deletions

View 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