2024-10-01 20:08:25 -04:00
|
|
|
vim.g.base46_cache = vim.fn.stdpath "data" .. "/base46/"
|
2024-03-09 11:03:44 -05:00
|
|
|
vim.g.mapleader = " "
|
|
|
|
|
|
|
|
-- bootstrap lazy and all plugins
|
|
|
|
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
|
|
|
|
|
2024-08-07 20:19:06 -04:00
|
|
|
if not vim.uv.fs_stat(lazypath) then
|
2024-03-09 11:03:44 -05:00
|
|
|
local repo = "https://github.com/folke/lazy.nvim.git"
|
|
|
|
vim.fn.system { "git", "clone", "--filter=blob:none", repo, "--branch=stable", lazypath }
|
|
|
|
end
|
|
|
|
|
|
|
|
vim.opt.rtp:prepend(lazypath)
|
|
|
|
|
|
|
|
local lazy_config = require "configs.lazy"
|
|
|
|
|
|
|
|
-- load plugins
|
|
|
|
require("lazy").setup({
|
|
|
|
{
|
|
|
|
"NvChad/NvChad",
|
|
|
|
lazy = false,
|
2024-03-09 11:06:02 -05:00
|
|
|
branch = "v2.5",
|
2024-03-09 11:03:44 -05:00
|
|
|
import = "nvchad.plugins",
|
|
|
|
},
|
|
|
|
|
|
|
|
{ import = "plugins" },
|
|
|
|
}, lazy_config)
|
|
|
|
|
|
|
|
-- load theme
|
|
|
|
dofile(vim.g.base46_cache .. "defaults")
|
|
|
|
dofile(vim.g.base46_cache .. "statusline")
|
|
|
|
|
2024-08-07 09:56:13 -04:00
|
|
|
require "options"
|
2024-03-09 11:03:44 -05:00
|
|
|
require "nvchad.autocmds"
|
|
|
|
|
|
|
|
vim.schedule(function()
|
|
|
|
require "mappings"
|
|
|
|
end)
|
2024-10-16 09:18:14 -04:00
|
|
|
|
|
|
|
------added------------
|
|
|
|
vim.api.nvim_create_autocmd("FileType", {
|
|
|
|
pattern = "sql",
|
|
|
|
callback = function()
|
|
|
|
vim.bo.commentstring = "-- %s"
|
|
|
|
end,
|
|
|
|
})
|