2021-06-26 03:36:26 +01:00
|
|
|
local opt = vim.opt
|
2021-07-14 06:24:09 +01:00
|
|
|
local g = vim.g
|
2021-06-26 03:36:26 +01:00
|
|
|
|
2021-08-19 04:21:42 +01:00
|
|
|
-- export user config as a global varibale
|
|
|
|
g.nvchad_user_config = "chadrc"
|
|
|
|
|
2021-08-22 08:49:15 +01:00
|
|
|
local options = require("core.utils").load_config().options
|
2021-08-19 04:21:42 +01:00
|
|
|
|
2021-08-12 12:58:03 +01:00
|
|
|
opt.clipboard = options.clipboard
|
2021-08-22 08:49:15 +01:00
|
|
|
opt.cmdheight = options.cmdheight
|
|
|
|
opt.cul = true -- cursor line
|
2021-03-13 10:51:52 +00:00
|
|
|
|
2021-08-22 08:49:15 +01:00
|
|
|
-- Indentline
|
|
|
|
opt.expandtab = options.expandtab
|
|
|
|
opt.shiftwidth = options.shiftwidth
|
|
|
|
opt.smartindent = options.smartindent
|
2021-07-14 05:57:33 +01:00
|
|
|
|
|
|
|
-- disable tilde on end of buffer: https://github.com/ neovim/neovim/pull/8546#issuecomment-643643758
|
2021-08-16 08:49:09 +01:00
|
|
|
opt.fillchars = { eob = " " }
|
2021-07-14 05:57:33 +01:00
|
|
|
|
2021-08-22 08:49:15 +01:00
|
|
|
opt.hidden = options.hidden
|
|
|
|
opt.ignorecase = options.ignorecase
|
|
|
|
opt.mouse = options.mouse
|
|
|
|
|
2021-06-16 01:50:47 +01:00
|
|
|
-- Numbers
|
2021-08-12 12:58:03 +01:00
|
|
|
opt.number = options.number
|
|
|
|
opt.numberwidth = options.numberwidth
|
2021-08-19 09:28:07 +01:00
|
|
|
opt.relativenumber = options.relativenumber
|
2021-08-22 08:49:15 +01:00
|
|
|
opt.ruler = options.ruler
|
2021-06-16 01:50:47 +01:00
|
|
|
|
2021-08-22 08:49:15 +01:00
|
|
|
-- disable nvim intro
|
|
|
|
opt.shortmess:append "sI"
|
2021-08-22 04:21:52 +01:00
|
|
|
|
2021-08-22 08:49:15 +01:00
|
|
|
opt.signcolumn = "yes"
|
|
|
|
opt.splitbelow = true
|
|
|
|
opt.splitright = true
|
2021-08-22 04:21:52 +01:00
|
|
|
opt.tabstop = options.tabstop
|
2021-08-22 08:49:15 +01:00
|
|
|
opt.termguicolors = true
|
|
|
|
opt.timeoutlen = options.timeoutlen
|
|
|
|
opt.undofile = options.permanent_undo
|
|
|
|
|
|
|
|
-- interval for writing swap file to disk, also used by gitsigns
|
|
|
|
opt.updatetime = options.updatetime
|
2021-06-15 17:14:11 +01:00
|
|
|
|
2021-07-17 10:04:36 +01:00
|
|
|
-- go to previous/next line with h,l,left arrow and right arrow
|
|
|
|
-- when cursor reaches end/beginning of line
|
2021-08-16 08:49:09 +01:00
|
|
|
opt.whichwrap:append "<>hl"
|
2021-07-17 10:04:36 +01:00
|
|
|
|
2021-08-12 12:58:03 +01:00
|
|
|
g.mapleader = options.mapleader
|
2021-07-14 06:24:09 +01:00
|
|
|
|
2021-08-22 08:49:15 +01:00
|
|
|
-- disable some builtin vim plugins
|
2021-07-20 19:19:31 +01:00
|
|
|
local disabled_built_ins = {
|
2021-08-22 08:49:15 +01:00
|
|
|
"2html_plugin",
|
|
|
|
"getscript",
|
|
|
|
"getscriptPlugin",
|
|
|
|
"gzip",
|
|
|
|
"logipat",
|
2021-08-16 08:49:09 +01:00
|
|
|
"netrw",
|
|
|
|
"netrwPlugin",
|
|
|
|
"netrwSettings",
|
|
|
|
"netrwFileHandlers",
|
2021-08-22 08:49:15 +01:00
|
|
|
"matchit",
|
2021-08-16 08:49:09 +01:00
|
|
|
"tar",
|
|
|
|
"tarPlugin",
|
|
|
|
"rrhelper",
|
|
|
|
"spellfile_plugin",
|
2021-08-22 08:49:15 +01:00
|
|
|
"vimball",
|
|
|
|
"vimballPlugin",
|
|
|
|
"zip",
|
|
|
|
"zipPlugin",
|
2021-07-20 19:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, plugin in pairs(disabled_built_ins) do
|
2021-08-16 08:49:09 +01:00
|
|
|
g["loaded_" .. plugin] = 1
|
2021-07-20 19:19:31 +01:00
|
|
|
end
|