mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-04 12:00:29 +00:00
36cb57ecce
* tree-wide: Format files ugh why do people don't push formatted stuff * mappings|init: Move init mappings to a function, only call when required | Show err message for init because mappings.lua is called from multiple places, so there should't be any code that executes without calling a specific function show error message when something fails in init.lua makes no sense to not rearrange plugin functions alphabetically, but keep misc at top * feat: Do not depend on user config | Fix merging of configs because it is a user config, so our config shoudn't break even we if dont have it use our own table merge function move loading config to a function use a global variable to store the config, so no need to call the table function everytime * Add NvChadUpdate command and shortcut for it map leader+uu to it summary of what it does: first ask the user for confirmation and tell that the updater is gonna run git reset --hard in config repo and chadrc will be restored take backup of chadrc in a lua string and locally in a file with chadrc.bak.(random numbers) git reset on config dir and git pull whether success or error, restore the chadrc file if restore fails, then print backup file path for more deep understanding, read the comments in utils.lua * NvChadUpdater: Make update repo and url configurable | Improvr logging
89 lines
2.6 KiB
Lua
89 lines
2.6 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("utils").load_config().options
|
|
|
|
opt.completeopt = { "menuone", "noselect" }
|
|
opt.undofile = options.permanent_undo
|
|
opt.ruler = options.ruler
|
|
opt.hidden = options.hidden
|
|
opt.ignorecase = options.ignorecase
|
|
opt.splitbelow = true
|
|
opt.splitright = true
|
|
opt.termguicolors = true
|
|
opt.cul = true
|
|
opt.mouse = options.mouse
|
|
opt.signcolumn = "yes"
|
|
opt.cmdheight = options.cmdheight
|
|
opt.updatetime = options.updatetime -- update interval for gitsigns
|
|
opt.timeoutlen = options.timeoutlen
|
|
opt.clipboard = options.clipboard
|
|
|
|
-- disable nvim intro
|
|
opt.shortmess:append "sI"
|
|
|
|
-- disable tilde on end of buffer: https://github.com/ neovim/neovim/pull/8546#issuecomment-643643758
|
|
opt.fillchars = { eob = " " }
|
|
|
|
-- Numbers
|
|
opt.number = options.number
|
|
opt.numberwidth = options.numberwidth
|
|
opt.relativenumber = options.relativenumber
|
|
|
|
-- Indenline
|
|
opt.expandtab = options.expandtab
|
|
opt.shiftwidth = options.shiftwidth
|
|
opt.smartindent = options.smartindent
|
|
|
|
-- 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
|
|
g.auto_save = options.autosave
|
|
|
|
-- disable builtin vim plugins
|
|
local disabled_built_ins = {
|
|
"netrw",
|
|
"netrwPlugin",
|
|
"netrwSettings",
|
|
"netrwFileHandlers",
|
|
"gzip",
|
|
"zip",
|
|
"zipPlugin",
|
|
"tar",
|
|
"tarPlugin",
|
|
"getscript",
|
|
"getscriptPlugin",
|
|
"vimball",
|
|
"vimballPlugin",
|
|
"2html_plugin",
|
|
"logipat",
|
|
"rrhelper",
|
|
"spellfile_plugin",
|
|
"matchit",
|
|
}
|
|
|
|
for _, plugin in pairs(disabled_built_ins) do
|
|
g["loaded_" .. plugin] = 1
|
|
end
|
|
|
|
-- Use relative & absolute line numbers in 'n' & 'i' modes respectively
|
|
-- vim.cmd[[ au InsertEnter * set norelativenumber ]]
|
|
-- vim.cmd[[ au InsertLeave * set relativenumber ]]
|
|
|
|
-- Don't show any numbers inside terminals
|
|
vim.cmd [[ au TermOpen term://* setlocal nonumber norelativenumber ]]
|
|
|
|
-- Don't show status line on certain windows
|
|
vim.cmd [[ au TermOpen term://* setfiletype terminal ]]
|
|
vim.cmd [[ let hidden_statusline = luaeval('require("utils").load_config().ui.hidden_statusline') | autocmd BufEnter,BufWinEnter,WinEnter,CmdwinEnter,TermEnter * nested if index(hidden_statusline, &ft) >= 0 | set laststatus=0 | else | set laststatus=2 | endif ]]
|
|
|
|
-- Open a file from its last left off position
|
|
-- vim.cmd [[ au BufReadPost * if expand('%:p') !~# '\m/\.git/' && line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif ]]
|
|
-- File extension specific tabbing
|
|
-- vim.cmd [[ autocmd Filetype python setlocal expandtab tabstop=4 shiftwidth=4 softtabstop=4 ]]
|