Added my NeoVim config.

This commit is contained in:
duma97
2025-11-15 21:21:50 +04:00
parent 70d2ac3c4d
commit 992e6832ad
20 changed files with 712 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
-- Basic vim options
vim.opt.relativenumber = false
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.opt.smartindent = true
vim.opt.wrap = false
vim.opt.swapfile = false
vim.opt.backup = false
vim.opt.undofile = true
vim.opt.hlsearch = false
vim.opt.incsearch = true
vim.opt.termguicolors = true
vim.opt.scrolloff = 8
vim.opt.updatetime = 50
vim.opt.colorcolumn = "80"