mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-06 15:20:25 +00:00
9ffddb6b52
* move teleacope files, updater and related utils to https://github.com/NvChad/core * restructure config file and directory structure * expose mappings for better escape * allow multiple mappings for some * improve merge table function for the same * move autocommands to a seperate file * rearrange everything alphabetically where sanely possible * rearrange packer plugin list on the basis of trigerred state config structure now . ├── init.lua ├── LICENSE ├── lua │ ├── chadrc.lua │ ├── colors │ │ ├── highlights.lua │ │ ├── init.lua │ │ └── themes │ │ ├── chadracula.lua │ │ ├── everforest.lua │ │ ├── gruvchad.lua │ │ ├── javacafe.lua │ │ ├── mountain.lua │ │ ├── norchad.lua │ │ ├── one-light.lua │ │ ├── onedark.lua │ │ ├── tokyonight.lua │ │ └── tomorrow-night.lua │ ├── core │ │ ├── autocmds.lua │ │ ├── init.lua │ │ ├── mappings.lua │ │ ├── options.lua │ │ └── utils.lua │ ├── default_config.lua │ └── plugins │ ├── configs │ │ ├── autopairs.lua │ │ ├── autosave.lua │ │ ├── bufferline.lua │ │ ├── chadsheet.lua │ │ ├── compe.lua │ │ ├── dashboard.lua │ │ ├── gitsigns.lua │ │ ├── icons.lua │ │ ├── lspconfig.lua │ │ ├── luasnip.lua │ │ ├── nvimtree.lua │ │ ├── others.lua │ │ ├── statusline.lua │ │ ├── telescope.lua │ │ ├── treesitter.lua │ │ └── zenmode.lua │ ├── init.lua │ └── packerInit.lua └── README.md
75 lines
1.7 KiB
Lua
75 lines
1.7 KiB
Lua
local opt = vim.opt
|
|
local g = vim.g
|
|
|
|
-- export user config as a global varibale
|
|
g.nvchad_user_config = "chadrc"
|
|
|
|
local options = require("core.utils").load_config().options
|
|
|
|
opt.clipboard = options.clipboard
|
|
opt.cmdheight = options.cmdheight
|
|
opt.completeopt = { "menuone", "noselect" }
|
|
opt.cul = true -- cursor line
|
|
|
|
-- Indentline
|
|
opt.expandtab = options.expandtab
|
|
opt.shiftwidth = options.shiftwidth
|
|
opt.smartindent = options.smartindent
|
|
|
|
-- disable tilde on end of buffer: https://github.com/ neovim/neovim/pull/8546#issuecomment-643643758
|
|
opt.fillchars = { eob = " " }
|
|
|
|
opt.hidden = options.hidden
|
|
opt.ignorecase = options.ignorecase
|
|
opt.mouse = options.mouse
|
|
|
|
-- Numbers
|
|
opt.number = options.number
|
|
opt.numberwidth = options.numberwidth
|
|
opt.relativenumber = options.relativenumber
|
|
opt.ruler = options.ruler
|
|
|
|
-- disable nvim intro
|
|
opt.shortmess:append "sI"
|
|
opt.signcolumn = "yes"
|
|
opt.splitbelow = true
|
|
opt.splitright = true
|
|
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
|
|
|
|
-- go to previous/next line with h,l,left arrow and right arrow
|
|
-- when cursor reaches end/beginning of line
|
|
opt.whichwrap:append "<>hl"
|
|
|
|
g.mapleader = options.mapleader
|
|
|
|
-- disable some builtin vim plugins
|
|
local disabled_built_ins = {
|
|
"2html_plugin",
|
|
"getscript",
|
|
"getscriptPlugin",
|
|
"gzip",
|
|
"logipat",
|
|
"netrw",
|
|
"netrwPlugin",
|
|
"netrwSettings",
|
|
"netrwFileHandlers",
|
|
"matchit",
|
|
"tar",
|
|
"tarPlugin",
|
|
"rrhelper",
|
|
"spellfile_plugin",
|
|
"vimball",
|
|
"vimballPlugin",
|
|
"zip",
|
|
"zipPlugin",
|
|
}
|
|
|
|
for _, plugin in pairs(disabled_built_ins) do
|
|
g["loaded_" .. plugin] = 1
|
|
end
|