2021-06-26 02:36:26 +00:00
|
|
|
local opt = vim.opt
|
2021-07-14 05:24:09 +00:00
|
|
|
local g = vim.g
|
2022-06-01 14:03:11 +00:00
|
|
|
local config = require("core.utils").load_config()
|
|
|
|
|
2022-07-26 13:05:58 +00:00
|
|
|
g.vim_version = vim.version().minor
|
2022-06-01 14:03:11 +00:00
|
|
|
g.nvchad_theme = config.ui.theme
|
2022-06-14 12:06:27 +00:00
|
|
|
g.toggle_theme_icon = " "
|
|
|
|
g.transparency = config.ui.transparency
|
|
|
|
g.theme_switcher_loaded = false
|
2022-05-14 15:57:18 +00:00
|
|
|
|
2022-07-26 06:40:27 +00:00
|
|
|
-- use filetype.lua instead of filetype.vim. it's enabled by default in neovim 0.8 (nightly)
|
2022-07-26 13:05:58 +00:00
|
|
|
if g.vim_version < 8 then
|
2022-07-26 06:40:27 +00:00
|
|
|
g.did_load_filetypes = 0
|
|
|
|
g.do_filetype_lua = 1
|
|
|
|
end
|
|
|
|
|
2022-04-27 15:42:28 +00:00
|
|
|
opt.laststatus = 3 -- global statusline
|
2022-06-09 03:15:28 +00:00
|
|
|
opt.showmode = false
|
|
|
|
|
2021-09-26 13:17:12 +00:00
|
|
|
opt.title = true
|
2022-04-27 15:42:28 +00:00
|
|
|
opt.clipboard = "unnamedplus"
|
2021-08-22 07:49:15 +00:00
|
|
|
opt.cul = true -- cursor line
|
2021-03-13 10:51:52 +00:00
|
|
|
|
2022-06-18 04:27:17 +00:00
|
|
|
-- Indenting
|
2022-04-27 15:42:28 +00:00
|
|
|
opt.expandtab = true
|
2022-07-22 16:00:00 +00:00
|
|
|
opt.shiftwidth = 2
|
2022-04-27 15:42:28 +00:00
|
|
|
opt.smartindent = true
|
2022-07-22 16:00:00 +00:00
|
|
|
opt.tabstop = 2
|
|
|
|
opt.softtabstop = 2
|
2021-07-14 04:57:33 +00:00
|
|
|
|
2022-04-27 15:42:28 +00:00
|
|
|
opt.fillchars = { eob = " " }
|
|
|
|
opt.ignorecase = true
|
|
|
|
opt.smartcase = true
|
|
|
|
opt.mouse = "a"
|
2021-08-22 07:49:15 +00:00
|
|
|
|
2021-06-16 00:50:47 +00:00
|
|
|
-- Numbers
|
2022-04-27 15:42:28 +00:00
|
|
|
opt.number = true
|
|
|
|
opt.numberwidth = 2
|
|
|
|
opt.ruler = false
|
2021-06-16 00:50:47 +00:00
|
|
|
|
2021-08-22 07:49:15 +00:00
|
|
|
-- disable nvim intro
|
|
|
|
opt.shortmess:append "sI"
|
2021-08-22 03:21:52 +00:00
|
|
|
|
2021-08-22 07:49:15 +00:00
|
|
|
opt.signcolumn = "yes"
|
|
|
|
opt.splitbelow = true
|
|
|
|
opt.splitright = true
|
|
|
|
opt.termguicolors = true
|
2022-04-27 15:42:28 +00:00
|
|
|
opt.timeoutlen = 400
|
|
|
|
opt.undofile = true
|
2021-08-22 07:49:15 +00:00
|
|
|
|
|
|
|
-- interval for writing swap file to disk, also used by gitsigns
|
2022-04-27 15:42:28 +00:00
|
|
|
opt.updatetime = 250
|
2021-06-15 16:14:11 +00:00
|
|
|
|
2021-07-17 09:04:36 +00:00
|
|
|
-- go to previous/next line with h,l,left arrow and right arrow
|
|
|
|
-- when cursor reaches end/beginning of line
|
2021-10-09 01:02:53 +00:00
|
|
|
opt.whichwrap:append "<>[]hl"
|
2022-06-18 04:27:17 +00:00
|
|
|
|
2022-04-27 15:42:28 +00:00
|
|
|
g.mapleader = " "
|
2021-07-14 05:24:09 +00:00
|
|
|
|
2021-08-22 07:49:15 +00:00
|
|
|
-- disable some builtin vim plugins
|
2022-04-27 15:42:28 +00:00
|
|
|
local default_plugins = {
|
2022-07-22 16:00:00 +00:00
|
|
|
"2html_plugin",
|
|
|
|
"getscript",
|
|
|
|
"getscriptPlugin",
|
|
|
|
"gzip",
|
|
|
|
"logipat",
|
|
|
|
"netrw",
|
|
|
|
"netrwPlugin",
|
|
|
|
"netrwSettings",
|
|
|
|
"netrwFileHandlers",
|
|
|
|
"matchit",
|
|
|
|
"tar",
|
|
|
|
"tarPlugin",
|
|
|
|
"rrhelper",
|
|
|
|
"spellfile_plugin",
|
|
|
|
"vimball",
|
|
|
|
"vimballPlugin",
|
|
|
|
"zip",
|
|
|
|
"zipPlugin",
|
|
|
|
"tutor",
|
|
|
|
"rplugin",
|
|
|
|
"syntax",
|
|
|
|
"synmenu",
|
|
|
|
"optwin",
|
|
|
|
"compiler",
|
|
|
|
"bugreport",
|
|
|
|
"ftplugin",
|
2022-04-27 15:42:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, plugin in pairs(default_plugins) do
|
2022-07-22 16:00:00 +00:00
|
|
|
g["loaded_" .. plugin] = 1
|
2021-07-20 18:19:31 +00:00
|
|
|
end
|
2022-01-31 04:33:15 +00:00
|
|
|
|
2022-06-27 15:54:19 +00:00
|
|
|
local default_providers = {
|
2022-07-22 16:00:00 +00:00
|
|
|
"node",
|
|
|
|
"perl",
|
|
|
|
"python3",
|
|
|
|
"ruby",
|
2022-06-27 15:54:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, provider in ipairs(default_providers) do
|
2022-07-22 16:00:00 +00:00
|
|
|
vim.g["loaded_" .. provider .. "_provider"] = 0
|
2022-06-27 15:54:19 +00:00
|
|
|
end
|