Refine settings

This commit is contained in:
Lord Of Nougate 2023-09-05 21:40:50 +02:00
parent 63720ef6e8
commit b83a2da4b5

View File

@ -1,3 +1,5 @@
vim.g.mapleader = " "
vim.opt.nu = true
vim.opt.relativenumber = true
vim.opt.ignorecase = true
@ -9,14 +11,14 @@ vim.opt.expandtab = true
vim.opt.smartindent = true
vim.opt.wrap = false
vim.opt.wrap = true
vim.opt.swapfile = false
vim.opt.backup = false
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"
vim.opt.undofile = true
vim.opt.hlsearch = false
vim.opt.hlsearch = true
vim.opt.incsearch = true
vim.opt.termguicolors = true
@ -29,4 +31,6 @@ vim.opt.updatetime = 50
vim.opt.colorcolumn = "80"
vim.g.mapleader = " "
vim.g.netrw_preview = 1
vim.g.netrw_liststyle = 3
vim.g.netrw_winsize = 30