118 lines
3.1 KiB
Lua
118 lines
3.1 KiB
Lua
local opt = vim.opt
|
|
local g = vim.g
|
|
local config = require("core.utils").load_config()
|
|
|
|
-------------------------------------- globals -----------------------------------------
|
|
g.nvchad_theme = config.ui.theme
|
|
g.base46_cache = vim.fn.stdpath "cache" .. "/nvchad/base46/"
|
|
g.toggle_theme_icon = " "
|
|
g.transparency = config.ui.transparency
|
|
|
|
-------------------------------------- options ------------------------------------------
|
|
opt.laststatus = 3 -- global statusline
|
|
opt.showmode = false
|
|
|
|
opt.clipboard = "unnamedplus"
|
|
opt.cursorline = true
|
|
|
|
-- Indenting
|
|
opt.expandtab = true
|
|
opt.shiftwidth = 2
|
|
opt.smartindent = true
|
|
opt.tabstop = 2
|
|
opt.softtabstop = 2
|
|
|
|
opt.fillchars = { eob = " " }
|
|
opt.ignorecase = true
|
|
opt.smartcase = true
|
|
opt.mouse = "a"
|
|
|
|
-- Numbers
|
|
opt.number = true
|
|
opt.numberwidth = 2
|
|
opt.ruler = false
|
|
|
|
-- disable nvim intro
|
|
opt.shortmess:append "sI"
|
|
|
|
opt.signcolumn = "yes"
|
|
opt.splitbelow = true
|
|
opt.splitright = true
|
|
opt.termguicolors = true
|
|
opt.timeoutlen = 400
|
|
opt.undofile = true
|
|
|
|
-- interval for writing swap file to disk, also used by gitsigns
|
|
opt.updatetime = 250
|
|
|
|
-- 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 = " "
|
|
|
|
-- disable some default providers
|
|
for _, provider in ipairs { "node", "perl", "python3", "ruby" } do
|
|
vim.g["loaded_" .. provider .. "_provider"] = 0
|
|
end
|
|
|
|
-- add binaries installed by mason.nvim to path
|
|
local is_windows = vim.loop.os_uname().sysname == "Windows_NT"
|
|
vim.env.PATH = vim.env.PATH .. (is_windows and ";" or ":") .. vim.fn.stdpath "data" .. "/mason/bin"
|
|
|
|
-------------------------------------- autocmds ------------------------------------------
|
|
local autocmd = vim.api.nvim_create_autocmd
|
|
|
|
-- dont list quickfix buffers
|
|
autocmd("FileType", {
|
|
pattern = "qf",
|
|
callback = function()
|
|
vim.opt_local.buflisted = false
|
|
end,
|
|
})
|
|
|
|
local sep = vim.loop.os_uname().sysname:find "windows" and "\\" or "/"
|
|
|
|
vim.api.nvim_create_autocmd("BufWritePost", {
|
|
pattern = vim.fn.glob(
|
|
table.concat({
|
|
vim.fn.stdpath "config",
|
|
"lua",
|
|
"custom",
|
|
"**",
|
|
"*.lua",
|
|
}, sep),
|
|
true,
|
|
true,
|
|
true
|
|
),
|
|
|
|
group = vim.api.nvim_create_augroup("ReloadNvChad", {}),
|
|
|
|
callback = function(opts)
|
|
require("plenary.reload").reload_module "base46"
|
|
local file = string
|
|
.gsub(vim.fn.fnamemodify(opts.file, ":r"), vim.fn.stdpath "config" .. sep .. "lua" .. sep, "")
|
|
:gsub(sep, ".")
|
|
require("plenary.reload").reload_module(file)
|
|
require("plenary.reload").reload_module "custom.chadrc"
|
|
|
|
config = require("core.utils").load_config()
|
|
|
|
vim.g.nvchad_theme = config.ui.theme
|
|
vim.g.transparency = config.ui.transparency
|
|
|
|
vim.opt.statusline = "%!v:lua.require('nvchad_ui.statusline." .. config.ui.statusline.theme .. "').run()"
|
|
|
|
require("base46").load_all_highlights()
|
|
-- vim.cmd("redraw!")
|
|
end,
|
|
})
|
|
|
|
-------------------------------------- commands ------------------------------------------
|
|
local new_cmd = vim.api.nvim_create_user_command
|
|
|
|
new_cmd("NvChadUpdate", function()
|
|
require "nvchad.update"()
|
|
end, {})
|