2022-10-21 17:53:51 +02:00
|
|
|
local o = vim.opt
|
|
|
|
local g = vim.g
|
|
|
|
|
|
|
|
o.undodir = vim.fn.stdpath "cache" .. "/undo"
|
|
|
|
o.clipboard = "unnamedplus"
|
|
|
|
o.conceallevel = 0
|
|
|
|
o.numberwidth = 3
|
|
|
|
o.hlsearch = true
|
|
|
|
o.ignorecase = true
|
|
|
|
o.showmode = false
|
|
|
|
o.smartindent = true
|
|
|
|
o.splitbelow = true
|
|
|
|
o.splitbelow = true
|
|
|
|
o.splitbelow = true
|
|
|
|
o.updatetime = 250
|
|
|
|
o.writebackup = false
|
|
|
|
o.expandtab = true
|
2023-01-28 19:06:51 +01:00
|
|
|
o.shiftwidth = 4
|
|
|
|
o.tabstop = 4
|
2022-10-21 17:53:51 +02:00
|
|
|
o.cursorline = true
|
|
|
|
o.signcolumn = "yes"
|
|
|
|
o.wrap = false
|
|
|
|
o.scrolloff = 8
|
|
|
|
o.sidescrolloff = 8
|
|
|
|
o.undofile = true
|
|
|
|
o.title = true
|
|
|
|
o.titlestring = " %t"
|
|
|
|
o.termguicolors = true
|
|
|
|
o.timeoutlen = 500
|
|
|
|
o.foldmethod = "expr"
|
|
|
|
o.foldlevelstart = 99
|
|
|
|
o.foldexpr = "nvim_treesitter#foldexpr()"
|
|
|
|
o.number = true
|
|
|
|
o.relativenumber = true
|
|
|
|
o.laststatus = 3
|
2022-10-27 16:27:27 +02:00
|
|
|
o.modeline = true
|
|
|
|
o.modelines = 3
|
2022-12-20 18:14:32 +01:00
|
|
|
o.listchars = "eol:$,tab:>-,trail:~,extends:>,precedes:<"
|
2022-10-21 17:53:51 +02:00
|
|
|
|
2022-10-24 18:11:04 +02:00
|
|
|
g.Illuminate_ftblacklist = { 'alpha', 'NvimTree' }
|
2022-10-21 17:53:51 +02:00
|
|
|
g.mapleader = ' '
|