Merge Arch config as main #1
33 changed files with 389 additions and 1879 deletions
|
|
@ -1 +0,0 @@
|
||||||
!/lua/custom/
|
|
||||||
2
nvim/README.md
Normal file
2
nvim/README.md
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
# starter
|
||||||
|
Starter config for NvChad
|
||||||
|
|
@ -1,21 +1,39 @@
|
||||||
require "core"
|
vim.g.base46_cache = vim.fn.stdpath "data" .. "/nvchad/base46/"
|
||||||
|
vim.g.mapleader = " "
|
||||||
local custom_init_path = vim.api.nvim_get_runtime_file("lua/custom/init.lua", false)[1]
|
|
||||||
|
|
||||||
if custom_init_path then
|
|
||||||
dofile(custom_init_path)
|
|
||||||
end
|
|
||||||
|
|
||||||
require("core.utils").load_mappings()
|
|
||||||
|
|
||||||
|
-- bootstrap lazy and all plugins
|
||||||
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
|
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
|
||||||
|
|
||||||
-- bootstrap lazy.nvim!
|
|
||||||
if not vim.loop.fs_stat(lazypath) then
|
if not vim.loop.fs_stat(lazypath) then
|
||||||
require("core.bootstrap").gen_chadrc_template()
|
local repo = "https://github.com/folke/lazy.nvim.git"
|
||||||
require("core.bootstrap").lazy(lazypath)
|
vim.fn.system { "git", "clone", "--filter=blob:none", repo, "--branch=stable", lazypath }
|
||||||
end
|
end
|
||||||
|
|
||||||
dofile(vim.g.base46_cache .. "defaults")
|
|
||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
require "plugins"
|
|
||||||
|
local lazy_config = require "configs.lazy"
|
||||||
|
|
||||||
|
-- load plugins
|
||||||
|
require("lazy").setup({
|
||||||
|
{
|
||||||
|
"NvChad/NvChad",
|
||||||
|
lazy = false,
|
||||||
|
branch = "v2.5",
|
||||||
|
import = "nvchad.plugins",
|
||||||
|
config = function()
|
||||||
|
require "options"
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
|
||||||
|
{ import = "plugins" },
|
||||||
|
}, lazy_config)
|
||||||
|
|
||||||
|
-- load theme
|
||||||
|
dofile(vim.g.base46_cache .. "defaults")
|
||||||
|
dofile(vim.g.base46_cache .. "statusline")
|
||||||
|
|
||||||
|
require "nvchad.autocmds"
|
||||||
|
|
||||||
|
vim.schedule(function()
|
||||||
|
require "mappings"
|
||||||
|
end)
|
||||||
|
|
|
||||||
|
|
@ -1,32 +1,38 @@
|
||||||
{
|
{
|
||||||
"Comment.nvim": { "branch": "master", "commit": "0236521ea582747b58869cb72f70ccfa967d2e89" },
|
"Comment.nvim": { "branch": "master", "commit": "0236521ea582747b58869cb72f70ccfa967d2e89" },
|
||||||
"LuaSnip": { "branch": "master", "commit": "f3b3d3446bcbfa62d638b1903ff00a78b2b730a1" },
|
"FixCursorHold.nvim": { "branch": "master", "commit": "1900f89dc17c603eec29960f57c00bd9ae696495" },
|
||||||
"base46": { "branch": "v2.0", "commit": "3f2b658cbd6650ddaf2bae3233e143a41ca25b1a" },
|
"LuaSnip": { "branch": "master", "commit": "be7be2ca7f55bb881a7ffc16b2efa5af034ab06b" },
|
||||||
"better-escape.nvim": { "branch": "master", "commit": "7e86edafb8c7e73699e0320f225464a298b96d12" },
|
"NvChad": { "branch": "v2.5", "commit": "0b1f669caa312ca11be79b3833296d1271bf4c75" },
|
||||||
|
"base46": { "branch": "v2.5", "commit": "adb64a6ae70f8c61c5ab8892f07d29dafd4d47ad" },
|
||||||
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
|
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
|
||||||
"cmp-nvim-lsp": { "branch": "main", "commit": "5af77f54de1b16c34b23cba810150689a3a90312" },
|
"cmp-nvim-lsp": { "branch": "main", "commit": "5af77f54de1b16c34b23cba810150689a3a90312" },
|
||||||
"cmp-nvim-lua": { "branch": "main", "commit": "f12408bdb54c39c23e67cab726264c10db33ada8" },
|
"cmp-nvim-lua": { "branch": "main", "commit": "f12408bdb54c39c23e67cab726264c10db33ada8" },
|
||||||
"cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" },
|
"cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" },
|
||||||
"cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" },
|
"cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" },
|
||||||
"conform.nvim": { "branch": "master", "commit": "192a6d2ddace343f1840a8f72efe2315bd392243" },
|
"conform.nvim": { "branch": "master", "commit": "820eec990d5f332d30cf939954c8672a43a0459e" },
|
||||||
"friendly-snippets": { "branch": "main", "commit": "dbd45e9ba76d535e4cba88afa1b7aa43bb765336" },
|
"friendly-snippets": { "branch": "main", "commit": "ea068f1becd91bcd4591fceb6420d4335e2e14d3" },
|
||||||
"gitsigns.nvim": { "branch": "main", "commit": "2c2463dbd82eddd7dbab881c3a62cfbfbe3c67ae" },
|
"gitsigns.nvim": { "branch": "main", "commit": "d96ef3bbff0bdbc3916a220f5c74a04c4db033f2" },
|
||||||
"indent-blankline.nvim": { "branch": "master", "commit": "b7aa0aed55887edfaece23f7b46ab22232fc8741" },
|
"indent-blankline.nvim": { "branch": "master", "commit": "3d08501caef2329aba5121b753e903904088f7e6" },
|
||||||
"lazy.nvim": { "branch": "main", "commit": "28126922c9b54e35a192ac415788f202c3944c9f" },
|
"lazy.nvim": { "branch": "main", "commit": "31ddbea7c10b6920c9077b66c97951ca8682d5c8" },
|
||||||
"mason.nvim": { "branch": "main", "commit": "c43eeb5614a09dc17c03a7fb49de2e05de203924" },
|
"mason-lspconfig.nvim": { "branch": "main", "commit": "44509689b9bf3984d729cc264aacb31cb7f41668" },
|
||||||
"nvim-autopairs": { "branch": "master", "commit": "1efb4f2e754d282762a1413ea0528d9a45143cdd" },
|
"mason-nvim-dap.nvim": { "branch": "main", "commit": "67210c0e775adec55de9826b038e8b62de554afc" },
|
||||||
"nvim-cmp": { "branch": "main", "commit": "04e0ca376d6abdbfc8b52180f8ea236cbfddf782" },
|
"mason.nvim": { "branch": "main", "commit": "751b1fcbf3d3b783fcf8d48865264a9bcd8f9b10" },
|
||||||
|
"neotest": { "branch": "master", "commit": "f03a78cef74db5638e4312e18b767294a90de8da" },
|
||||||
|
"neotest-jest": { "branch": "main", "commit": "514fd4eae7da15fd409133086bb8e029b65ac43f" },
|
||||||
|
"nvim-autopairs": { "branch": "master", "commit": "4f41e5940bc0443fdbe5f995e2a596847215cd2a" },
|
||||||
|
"nvim-cmp": { "branch": "main", "commit": "ce16de5665c766f39c271705b17fff06f7bcb84f" },
|
||||||
"nvim-colorizer.lua": { "branch": "master", "commit": "85855b38011114929f4058efc97af1059ab3e41d" },
|
"nvim-colorizer.lua": { "branch": "master", "commit": "85855b38011114929f4058efc97af1059ab3e41d" },
|
||||||
"nvim-lspconfig": { "branch": "master", "commit": "b8751ff9ac9fd6ce253e0653d898de02e54040d5" },
|
"nvim-dap": { "branch": "master", "commit": "405df1dcc2e395ab5173a9c3d00e03942c023074" },
|
||||||
"nvim-surround": { "branch": "main", "commit": "703ec63aa798e5e07d309b35e42def34bebe0174" },
|
"nvim-lspconfig": { "branch": "master", "commit": "b73f30d113ace671bcf1f731dfc66987880410e6" },
|
||||||
"nvim-tree.lua": { "branch": "master", "commit": "d52fdeb0a300ac42b9cfa65ae0600a299f8e8677" },
|
"nvim-nio": { "branch": "master", "commit": "5800f585def265d52f1d8848133217c800bcb25d" },
|
||||||
"nvim-treesitter": { "branch": "master", "commit": "f197a15b0d1e8d555263af20add51450e5aaa1f0" },
|
"nvim-surround": { "branch": "main", "commit": "a4e30d33add8a9743b4f518b3a788b3c8e5def71" },
|
||||||
"nvim-web-devicons": { "branch": "master", "commit": "14ac5887110b06b89a96881d534230dac3ed134d" },
|
"nvim-tree.lua": { "branch": "master", "commit": "81eb8d519233c105f30dc0a278607e62b20502fd" },
|
||||||
"nvterm": { "branch": "main", "commit": "3e43be1d0ca60cc5e2dfc2d289b06577e7e57e98" },
|
"nvim-treesitter": { "branch": "master", "commit": "40e8c92f99ef26625ff2206f5e183ac3109f20ba" },
|
||||||
"plenary.nvim": { "branch": "master", "commit": "4f71c0c4a196ceb656c824a70792f3df3ce6bb6d" },
|
"nvim-web-devicons": { "branch": "master", "commit": "6e355632387a085f15a66ad68cf681c1d7374a04" },
|
||||||
"schemastore.nvim": { "branch": "main", "commit": "ce624332e6ba5a9a0c8f311a114ac179c5e72f62" },
|
"plenary.nvim": { "branch": "master", "commit": "8aad4396840be7fc42896e3011751b7609ca4119" },
|
||||||
"telescope.nvim": { "branch": "master", "commit": "2e1e382df42467029b493c143c2e727028140214" },
|
"schemastore.nvim": { "branch": "main", "commit": "c5d5abc86910fb31b9f734cae2547322e81d3a26" },
|
||||||
"toggleterm.nvim": { "branch": "main", "commit": "193786e0371e3286d3bc9aa0079da1cd41beaa62" },
|
"telescope.nvim": { "branch": "master", "commit": "4d4ade7f2b8f403e8816ca50c05ed16e259b21fb" },
|
||||||
"ui": { "branch": "v2.0", "commit": "7b3225264af17a9e0aff0b4fd2a0fac90b73db53" },
|
"typescript-tools.nvim": { "branch": "master", "commit": "c43d9580c3ff5999a1eabca849f807ab33787ea7" },
|
||||||
|
"ui": { "branch": "v2.5", "commit": "e1af69426b3c4b55c88bd1c81790c1c73b30bfa8" },
|
||||||
"which-key.nvim": { "branch": "main", "commit": "4433e5ec9a507e5097571ed55c02ea9658fb268a" }
|
"which-key.nvim": { "branch": "main", "commit": "4433e5ec9a507e5097571ed55c02ea9658fb268a" }
|
||||||
}
|
}
|
||||||
40
nvim/lua/chadrc.lua
Normal file
40
nvim/lua/chadrc.lua
Normal file
|
|
@ -0,0 +1,40 @@
|
||||||
|
-- This file needs to have same structure as nvconfig.lua
|
||||||
|
-- https://github.com/NvChad/NvChad/blob/v2.5/lua/nvconfig.lua
|
||||||
|
|
||||||
|
---@type ChadrcConfig
|
||||||
|
local M = {}
|
||||||
|
|
||||||
|
M.ui = {
|
||||||
|
theme = "doomchad",
|
||||||
|
theme_toggle = { "doomchad", "bearded-arc" },
|
||||||
|
|
||||||
|
hl_override = {
|
||||||
|
Comment = { italic = true },
|
||||||
|
["@comment"] = { italic = true },
|
||||||
|
},
|
||||||
|
|
||||||
|
statusline = {
|
||||||
|
theme = "default",
|
||||||
|
separator_style = "round",
|
||||||
|
lspprogress_len = 40,
|
||||||
|
},
|
||||||
|
|
||||||
|
nvdash = {
|
||||||
|
load_on_startup = true,
|
||||||
|
},
|
||||||
|
|
||||||
|
term = {
|
||||||
|
hl = "Normal:term,WinSeparator:WinSeparator",
|
||||||
|
sizes = { sp = 0.3, vsp = 0.2 },
|
||||||
|
float = {
|
||||||
|
relative = "editor",
|
||||||
|
row = 0.15,
|
||||||
|
col = 0.10,
|
||||||
|
width = 0.8,
|
||||||
|
height = 0.7,
|
||||||
|
border = "single",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
return M
|
||||||
20
nvim/lua/configs/conform.lua
Normal file
20
nvim/lua/configs/conform.lua
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
local options = {
|
||||||
|
formatters_by_ft = {
|
||||||
|
lua = { "stylua" },
|
||||||
|
|
||||||
|
css = { "prettier" },
|
||||||
|
html = { "prettier" },
|
||||||
|
javascript = { "prettier" },
|
||||||
|
typescript = { "prettier" },
|
||||||
|
|
||||||
|
sh = { "shfmt" },
|
||||||
|
},
|
||||||
|
|
||||||
|
-- format_on_save = {
|
||||||
|
-- -- These options will be passed to conform.format()
|
||||||
|
-- timeout_ms = 500,
|
||||||
|
-- lsp_fallback = true,
|
||||||
|
-- },
|
||||||
|
}
|
||||||
|
|
||||||
|
require("conform").setup(options)
|
||||||
|
|
@ -1,18 +1,58 @@
|
||||||
local on_attach = require("plugins.configs.lspconfig").on_attach
|
-- EXAMPLE
|
||||||
local capabilities = require("plugins.configs.lspconfig").capabilities
|
local on_attach = require("nvchad.configs.lspconfig").on_attach
|
||||||
|
local on_init = require("nvchad.configs.lspconfig").on_init
|
||||||
|
local capabilities = require("nvchad.configs.lspconfig").capabilities
|
||||||
|
|
||||||
local lspconfig = require "lspconfig"
|
local lspconfig = require "lspconfig"
|
||||||
|
local servers = {
|
||||||
|
-- bash
|
||||||
|
"bashls",
|
||||||
|
|
||||||
-- if you just want default config for the servers then put them in a table
|
-- webdev
|
||||||
local servers = { "html", "cssls", "tsserver", "tailwindcss", "jsonls", "yamlls", "dockerls", "docker_compose_language_service", "eslint", "graphql", "marksman", "sqls" }
|
"html",
|
||||||
|
"cssls",
|
||||||
|
"cssmodules_ls",
|
||||||
|
"tailwindcss",
|
||||||
|
"eslint",
|
||||||
|
"graphql",
|
||||||
|
|
||||||
|
-- go
|
||||||
|
"gopls",
|
||||||
|
|
||||||
|
-- python
|
||||||
|
"pylsp",
|
||||||
|
|
||||||
|
-- config
|
||||||
|
"jsonls",
|
||||||
|
"yamlls",
|
||||||
|
|
||||||
|
-- docker
|
||||||
|
"dockerls",
|
||||||
|
"docker_compose_language_service",
|
||||||
|
|
||||||
|
-- markdown
|
||||||
|
"marksman",
|
||||||
|
|
||||||
|
-- sql
|
||||||
|
"sqls",
|
||||||
|
}
|
||||||
|
|
||||||
|
-- lsps with default config
|
||||||
for _, lsp in ipairs(servers) do
|
for _, lsp in ipairs(servers) do
|
||||||
lspconfig[lsp].setup {
|
lspconfig[lsp].setup {
|
||||||
on_attach = on_attach,
|
on_attach = on_attach,
|
||||||
|
on_init = on_init,
|
||||||
capabilities = capabilities,
|
capabilities = capabilities,
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- typescript
|
||||||
|
-- lspconfig.tsserver.setup {
|
||||||
|
-- on_attach = on_attach,
|
||||||
|
-- on_init = on_init,
|
||||||
|
-- capabilities = capabilities,
|
||||||
|
-- }
|
||||||
|
|
||||||
lspconfig.jsonls.setup {
|
lspconfig.jsonls.setup {
|
||||||
settings = {
|
settings = {
|
||||||
json = {
|
json = {
|
||||||
|
|
@ -37,5 +77,3 @@ lspconfig.yamlls.setup {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
--
|
|
||||||
-- lspconfig.pyright.setup { blabla}
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
local M = {}
|
|
||||||
local fn = vim.fn
|
|
||||||
|
|
||||||
M.echo = function(str)
|
|
||||||
vim.cmd "redraw"
|
|
||||||
vim.api.nvim_echo({ { str, "Bold" } }, true, {})
|
|
||||||
end
|
|
||||||
|
|
||||||
local function shell_call(args)
|
|
||||||
local output = fn.system(args)
|
|
||||||
assert(vim.v.shell_error == 0, "External call failed with error code: " .. vim.v.shell_error .. "\n" .. output)
|
|
||||||
end
|
|
||||||
|
|
||||||
M.lazy = function(install_path)
|
|
||||||
------------- base46 ---------------
|
|
||||||
local lazy_path = fn.stdpath "data" .. "/lazy/base46"
|
|
||||||
|
|
||||||
M.echo " Compiling base46 theme to bytecode ..."
|
|
||||||
|
|
||||||
local base46_repo = "https://github.com/NvChad/base46"
|
|
||||||
shell_call { "git", "clone", "--depth", "1", "-b", "v2.0", base46_repo, lazy_path }
|
|
||||||
vim.opt.rtp:prepend(lazy_path)
|
|
||||||
|
|
||||||
require("base46").compile()
|
|
||||||
|
|
||||||
--------- lazy.nvim ---------------
|
|
||||||
M.echo " Installing lazy.nvim & plugins ..."
|
|
||||||
local repo = "https://github.com/folke/lazy.nvim.git"
|
|
||||||
shell_call { "git", "clone", "--filter=blob:none", "--branch=stable", repo, install_path }
|
|
||||||
vim.opt.rtp:prepend(install_path)
|
|
||||||
|
|
||||||
-- install plugins
|
|
||||||
require "plugins"
|
|
||||||
|
|
||||||
-- mason packages & show post_bootstrap screen
|
|
||||||
require "nvchad.post_install"()
|
|
||||||
end
|
|
||||||
|
|
||||||
M.gen_chadrc_template = function()
|
|
||||||
local path = fn.stdpath "config" .. "/lua/custom"
|
|
||||||
|
|
||||||
if fn.isdirectory(path) ~= 1 then
|
|
||||||
local input = vim.env.NVCHAD_EXAMPLE_CONFIG or fn.input "Do you want to install example custom config? (y/N): "
|
|
||||||
|
|
||||||
if input:lower() == "y" then
|
|
||||||
M.echo "Cloning example custom config repo..."
|
|
||||||
shell_call { "git", "clone", "--depth", "1", "https://github.com/NvChad/example_config", path }
|
|
||||||
fn.delete(path .. "/.git", "rf")
|
|
||||||
else
|
|
||||||
-- use very minimal chadrc
|
|
||||||
fn.mkdir(path, "p")
|
|
||||||
|
|
||||||
local file = io.open(path .. "/chadrc.lua", "w")
|
|
||||||
if file then
|
|
||||||
file:write "---@type ChadrcConfig\nlocal M = {}\n\nM.ui = { theme = 'onedark' }\n\nreturn M"
|
|
||||||
file:close()
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|
@ -1,92 +0,0 @@
|
||||||
local M = {}
|
|
||||||
|
|
||||||
M.options = {
|
|
||||||
nvchad_branch = "v2.0",
|
|
||||||
}
|
|
||||||
|
|
||||||
M.ui = {
|
|
||||||
------------------------------- base46 -------------------------------------
|
|
||||||
-- hl = highlights
|
|
||||||
hl_add = {},
|
|
||||||
hl_override = {},
|
|
||||||
changed_themes = {},
|
|
||||||
theme_toggle = { "onedark", "one_light" },
|
|
||||||
theme = "onedark", -- default theme
|
|
||||||
transparency = false,
|
|
||||||
lsp_semantic_tokens = false, -- needs nvim v0.9, just adds highlight groups for lsp semantic tokens
|
|
||||||
|
|
||||||
-- https://github.com/NvChad/base46/tree/v2.0/lua/base46/extended_integrations
|
|
||||||
extended_integrations = {}, -- these aren't compiled by default, ex: "alpha", "notify"
|
|
||||||
|
|
||||||
-- cmp themeing
|
|
||||||
cmp = {
|
|
||||||
icons = true,
|
|
||||||
lspkind_text = true,
|
|
||||||
style = "default", -- default/flat_light/flat_dark/atom/atom_colored
|
|
||||||
border_color = "grey_fg", -- only applicable for "default" style, use color names from base30 variables
|
|
||||||
selected_item_bg = "colored", -- colored / simple
|
|
||||||
},
|
|
||||||
|
|
||||||
telescope = { style = "borderless" }, -- borderless / bordered
|
|
||||||
|
|
||||||
------------------------------- nvchad_ui modules -----------------------------
|
|
||||||
statusline = {
|
|
||||||
theme = "default", -- default/vscode/vscode_colored/minimal
|
|
||||||
-- default/round/block/arrow separators work only for default statusline theme
|
|
||||||
-- round and block will work for minimal theme only
|
|
||||||
separator_style = "default",
|
|
||||||
overriden_modules = nil,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- lazyload it when there are 1+ buffers
|
|
||||||
tabufline = {
|
|
||||||
show_numbers = false,
|
|
||||||
enabled = true,
|
|
||||||
lazyload = true,
|
|
||||||
overriden_modules = nil,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- nvdash (dashboard)
|
|
||||||
nvdash = {
|
|
||||||
load_on_startup = false,
|
|
||||||
|
|
||||||
header = {
|
|
||||||
" ▄ ▄ ",
|
|
||||||
" ▄ ▄▄▄ ▄ ▄▄▄ ▄ ▄ ",
|
|
||||||
" █ ▄ █▄█ ▄▄▄ █ █▄█ █ █ ",
|
|
||||||
" ▄▄ █▄█▄▄▄█ █▄█▄█▄▄█▄▄█ █ ",
|
|
||||||
" ▄ █▄▄█ ▄ ▄▄ ▄█ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ",
|
|
||||||
" █▄▄▄▄ ▄▄▄ █ ▄ ▄▄▄ ▄ ▄▄▄ ▄ ▄ █ ▄",
|
|
||||||
"▄ █ █▄█ █▄█ █ █ █▄█ █ █▄█ ▄▄▄ █ █",
|
|
||||||
"█▄█ ▄ █▄▄█▄▄█ █ ▄▄█ █ ▄ █ █▄█▄█ █",
|
|
||||||
" █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█ █▄█▄▄▄█ ",
|
|
||||||
},
|
|
||||||
|
|
||||||
buttons = {
|
|
||||||
{ " Find File", "Spc f f", "Telescope find_files" },
|
|
||||||
{ " Recent Files", "Spc f o", "Telescope oldfiles" },
|
|
||||||
{ " Find Word", "Spc f w", "Telescope live_grep" },
|
|
||||||
{ " Bookmarks", "Spc m a", "Telescope marks" },
|
|
||||||
{ " Themes", "Spc t h", "Telescope themes" },
|
|
||||||
{ " Mappings", "Spc c h", "NvCheatsheet" },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
cheatsheet = { theme = "grid" }, -- simple/grid
|
|
||||||
|
|
||||||
lsp = {
|
|
||||||
-- show function signatures i.e args as you type
|
|
||||||
signature = {
|
|
||||||
disabled = false,
|
|
||||||
silent = true, -- silences 'no signature help available' message from appearing
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
M.plugins = "" -- path i.e "custom.plugins", so make custom/plugins.lua file
|
|
||||||
|
|
||||||
M.lazy_nvim = require "plugins.configs.lazy_nvim" -- config for lazy.nvim startup options
|
|
||||||
|
|
||||||
M.mappings = require "core.mappings"
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|
@ -1,141 +0,0 @@
|
||||||
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 "data" .. "/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.fn.stdpath "data" .. "/mason/bin" .. (is_windows and ";" or ":") .. vim.env.PATH
|
|
||||||
|
|
||||||
-------------------------------------- autocmds ------------------------------------------
|
|
||||||
local autocmd = vim.api.nvim_create_autocmd
|
|
||||||
|
|
||||||
-- dont list quickfix buffers
|
|
||||||
autocmd("FileType", {
|
|
||||||
pattern = "qf",
|
|
||||||
callback = function()
|
|
||||||
vim.opt_local.buflisted = false
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
|
|
||||||
-- reload some chadrc options on-save
|
|
||||||
autocmd("BufWritePost", {
|
|
||||||
pattern = vim.tbl_map(function(path)
|
|
||||||
return vim.fs.normalize(vim.loop.fs_realpath(path))
|
|
||||||
end, vim.fn.glob(vim.fn.stdpath "config" .. "/lua/custom/**/*.lua", true, true, true)),
|
|
||||||
group = vim.api.nvim_create_augroup("ReloadNvChad", {}),
|
|
||||||
|
|
||||||
callback = function(opts)
|
|
||||||
local fp = vim.fn.fnamemodify(vim.fs.normalize(vim.api.nvim_buf_get_name(opts.buf)), ":r") --[[@as string]]
|
|
||||||
local app_name = vim.env.NVIM_APPNAME and vim.env.NVIM_APPNAME or "nvim"
|
|
||||||
local module = string.gsub(fp, "^.*/" .. app_name .. "/lua/", ""):gsub("/", ".")
|
|
||||||
|
|
||||||
require("plenary.reload").reload_module "base46"
|
|
||||||
require("plenary.reload").reload_module(module)
|
|
||||||
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
|
|
||||||
|
|
||||||
-- statusline
|
|
||||||
require("plenary.reload").reload_module("nvchad.statusline." .. config.ui.statusline.theme)
|
|
||||||
vim.opt.statusline = "%!v:lua.require('nvchad.statusline." .. config.ui.statusline.theme .. "').run()"
|
|
||||||
|
|
||||||
-- tabufline
|
|
||||||
if config.ui.tabufline.enabled then
|
|
||||||
require("plenary.reload").reload_module "nvchad.tabufline.modules"
|
|
||||||
vim.opt.tabline = "%!v:lua.require('nvchad.tabufline.modules').run()"
|
|
||||||
end
|
|
||||||
|
|
||||||
require("base46").load_all_highlights()
|
|
||||||
-- vim.cmd("redraw!")
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
|
|
||||||
-- user event that loads after UIEnter + only if file buf is there
|
|
||||||
vim.api.nvim_create_autocmd({ "UIEnter", "BufReadPost", "BufNewFile" }, {
|
|
||||||
group = vim.api.nvim_create_augroup("NvFilePost", { clear = true }),
|
|
||||||
callback = function(args)
|
|
||||||
local file = vim.api.nvim_buf_get_name(args.buf)
|
|
||||||
local buftype = vim.api.nvim_buf_get_option(args.buf, "buftype")
|
|
||||||
|
|
||||||
if not vim.g.ui_entered and args.event == "UIEnter" then
|
|
||||||
vim.g.ui_entered = true
|
|
||||||
end
|
|
||||||
|
|
||||||
if file ~= "" and buftype ~= "nofile" and vim.g.ui_entered then
|
|
||||||
vim.api.nvim_exec_autocmds("User", { pattern = "FilePost", modeline = false })
|
|
||||||
vim.api.nvim_del_augroup_by_name "NvFilePost"
|
|
||||||
|
|
||||||
vim.schedule(function()
|
|
||||||
vim.api.nvim_exec_autocmds("FileType", {})
|
|
||||||
|
|
||||||
if vim.g.editorconfig then
|
|
||||||
require("editorconfig").config(args.buf)
|
|
||||||
end
|
|
||||||
end, 0)
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
|
|
||||||
-------------------------------------- commands ------------------------------------------
|
|
||||||
local new_cmd = vim.api.nvim_create_user_command
|
|
||||||
|
|
||||||
new_cmd("NvChadUpdate", function()
|
|
||||||
require "nvchad.updater"()
|
|
||||||
end, {})
|
|
||||||
|
|
@ -1,468 +0,0 @@
|
||||||
-- n, v, i, t = mode names
|
|
||||||
|
|
||||||
local M = {}
|
|
||||||
|
|
||||||
M.general = {
|
|
||||||
i = {
|
|
||||||
-- go to beginning and end
|
|
||||||
["<C-b>"] = { "<ESC>^i", "Beginning of line" },
|
|
||||||
["<C-e>"] = { "<End>", "End of line" },
|
|
||||||
|
|
||||||
-- navigate within insert mode
|
|
||||||
["<C-h>"] = { "<Left>", "Move left" },
|
|
||||||
["<C-l>"] = { "<Right>", "Move right" },
|
|
||||||
["<C-j>"] = { "<Down>", "Move down" },
|
|
||||||
["<C-k>"] = { "<Up>", "Move up" },
|
|
||||||
},
|
|
||||||
|
|
||||||
n = {
|
|
||||||
["<Esc>"] = { "<cmd> noh <CR>", "Clear highlights" },
|
|
||||||
-- switch between windows
|
|
||||||
["<C-h>"] = { "<C-w>h", "Window left" },
|
|
||||||
["<C-l>"] = { "<C-w>l", "Window right" },
|
|
||||||
["<C-j>"] = { "<C-w>j", "Window down" },
|
|
||||||
["<C-k>"] = { "<C-w>k", "Window up" },
|
|
||||||
|
|
||||||
-- save
|
|
||||||
["<C-s>"] = { "<cmd> w <CR>", "Save file" },
|
|
||||||
|
|
||||||
-- Copy all
|
|
||||||
["<C-c>"] = { "<cmd> %y+ <CR>", "Copy whole file" },
|
|
||||||
|
|
||||||
-- line numbers
|
|
||||||
["<leader>n"] = { "<cmd> set nu! <CR>", "Toggle line number" },
|
|
||||||
["<leader>rn"] = { "<cmd> set rnu! <CR>", "Toggle relative number" },
|
|
||||||
|
|
||||||
-- Allow moving the cursor through wrapped lines with j, k, <Up> and <Down>
|
|
||||||
-- http://www.reddit.com/r/vim/comments/2k4cbr/problem_with_gj_and_gk/
|
|
||||||
-- empty mode is same as using <cmd> :map
|
|
||||||
-- also don't use g[j|k] when in operator pending mode, so it doesn't alter d, y or c behaviour
|
|
||||||
["j"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "Move down", opts = { expr = true } },
|
|
||||||
["k"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "Move up", opts = { expr = true } },
|
|
||||||
["<Up>"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "Move up", opts = { expr = true } },
|
|
||||||
["<Down>"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "Move down", opts = { expr = true } },
|
|
||||||
|
|
||||||
-- new buffer
|
|
||||||
["<leader>b"] = { "<cmd> enew <CR>", "New buffer" },
|
|
||||||
["<leader>ch"] = { "<cmd> NvCheatsheet <CR>", "Mapping cheatsheet" },
|
|
||||||
|
|
||||||
["<leader>fm"] = {
|
|
||||||
function()
|
|
||||||
vim.lsp.buf.format { async = true }
|
|
||||||
end,
|
|
||||||
"LSP formatting",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
t = {
|
|
||||||
["<C-x>"] = { vim.api.nvim_replace_termcodes("<C-\\><C-N>", true, true, true), "Escape terminal mode" },
|
|
||||||
},
|
|
||||||
|
|
||||||
v = {
|
|
||||||
["<Up>"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "Move up", opts = { expr = true } },
|
|
||||||
["<Down>"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "Move down", opts = { expr = true } },
|
|
||||||
["<"] = { "<gv", "Indent line" },
|
|
||||||
[">"] = { ">gv", "Indent line" },
|
|
||||||
},
|
|
||||||
|
|
||||||
x = {
|
|
||||||
["j"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "Move down", opts = { expr = true } },
|
|
||||||
["k"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "Move up", opts = { expr = true } },
|
|
||||||
-- Don't copy the replaced text after pasting in visual mode
|
|
||||||
-- https://vim.fandom.com/wiki/Replace_a_word_with_yanked_text#Alternative_mapping_for_paste
|
|
||||||
["p"] = { 'p:let @+=@0<CR>:let @"=@0<CR>', "Dont copy replaced text", opts = { silent = true } },
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
M.tabufline = {
|
|
||||||
plugin = true,
|
|
||||||
|
|
||||||
n = {
|
|
||||||
-- cycle through buffers
|
|
||||||
["<tab>"] = {
|
|
||||||
function()
|
|
||||||
require("nvchad.tabufline").tabuflineNext()
|
|
||||||
end,
|
|
||||||
"Goto next buffer",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<S-tab>"] = {
|
|
||||||
function()
|
|
||||||
require("nvchad.tabufline").tabuflinePrev()
|
|
||||||
end,
|
|
||||||
"Goto prev buffer",
|
|
||||||
},
|
|
||||||
|
|
||||||
-- close buffer + hide terminal buffer
|
|
||||||
["<leader>x"] = {
|
|
||||||
function()
|
|
||||||
require("nvchad.tabufline").close_buffer()
|
|
||||||
end,
|
|
||||||
"Close buffer",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
M.comment = {
|
|
||||||
plugin = true,
|
|
||||||
|
|
||||||
-- toggle comment in both modes
|
|
||||||
n = {
|
|
||||||
["<leader>/"] = {
|
|
||||||
function()
|
|
||||||
require("Comment.api").toggle.linewise.current()
|
|
||||||
end,
|
|
||||||
"Toggle comment",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
v = {
|
|
||||||
["<leader>/"] = {
|
|
||||||
"<ESC><cmd>lua require('Comment.api').toggle.linewise(vim.fn.visualmode())<CR>",
|
|
||||||
"Toggle comment",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
M.lspconfig = {
|
|
||||||
plugin = true,
|
|
||||||
|
|
||||||
-- See `<cmd> :help vim.lsp.*` for documentation on any of the below functions
|
|
||||||
|
|
||||||
n = {
|
|
||||||
["gD"] = {
|
|
||||||
function()
|
|
||||||
vim.lsp.buf.declaration()
|
|
||||||
end,
|
|
||||||
"LSP declaration",
|
|
||||||
},
|
|
||||||
|
|
||||||
["gd"] = {
|
|
||||||
function()
|
|
||||||
vim.lsp.buf.definition()
|
|
||||||
end,
|
|
||||||
"LSP definition",
|
|
||||||
},
|
|
||||||
|
|
||||||
["K"] = {
|
|
||||||
function()
|
|
||||||
vim.lsp.buf.hover()
|
|
||||||
end,
|
|
||||||
"LSP hover",
|
|
||||||
},
|
|
||||||
|
|
||||||
["gi"] = {
|
|
||||||
function()
|
|
||||||
vim.lsp.buf.implementation()
|
|
||||||
end,
|
|
||||||
"LSP implementation",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<leader>ls"] = {
|
|
||||||
function()
|
|
||||||
vim.lsp.buf.signature_help()
|
|
||||||
end,
|
|
||||||
"LSP signature help",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<leader>D"] = {
|
|
||||||
function()
|
|
||||||
vim.lsp.buf.type_definition()
|
|
||||||
end,
|
|
||||||
"LSP definition type",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<leader>ra"] = {
|
|
||||||
function()
|
|
||||||
require("nvchad.renamer").open()
|
|
||||||
end,
|
|
||||||
"LSP rename",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<leader>ca"] = {
|
|
||||||
function()
|
|
||||||
vim.lsp.buf.code_action()
|
|
||||||
end,
|
|
||||||
"LSP code action",
|
|
||||||
},
|
|
||||||
|
|
||||||
["gr"] = {
|
|
||||||
function()
|
|
||||||
vim.lsp.buf.references()
|
|
||||||
end,
|
|
||||||
"LSP references",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<leader>lf"] = {
|
|
||||||
function()
|
|
||||||
vim.diagnostic.open_float { border = "rounded" }
|
|
||||||
end,
|
|
||||||
"Floating diagnostic",
|
|
||||||
},
|
|
||||||
|
|
||||||
["[d"] = {
|
|
||||||
function()
|
|
||||||
vim.diagnostic.goto_prev { float = { border = "rounded" } }
|
|
||||||
end,
|
|
||||||
"Goto prev",
|
|
||||||
},
|
|
||||||
|
|
||||||
["]d"] = {
|
|
||||||
function()
|
|
||||||
vim.diagnostic.goto_next { float = { border = "rounded" } }
|
|
||||||
end,
|
|
||||||
"Goto next",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<leader>q"] = {
|
|
||||||
function()
|
|
||||||
vim.diagnostic.setloclist()
|
|
||||||
end,
|
|
||||||
"Diagnostic setloclist",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<leader>wa"] = {
|
|
||||||
function()
|
|
||||||
vim.lsp.buf.add_workspace_folder()
|
|
||||||
end,
|
|
||||||
"Add workspace folder",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<leader>wr"] = {
|
|
||||||
function()
|
|
||||||
vim.lsp.buf.remove_workspace_folder()
|
|
||||||
end,
|
|
||||||
"Remove workspace folder",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<leader>wl"] = {
|
|
||||||
function()
|
|
||||||
print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
|
|
||||||
end,
|
|
||||||
"List workspace folders",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
v = {
|
|
||||||
["<leader>ca"] = {
|
|
||||||
function()
|
|
||||||
vim.lsp.buf.code_action()
|
|
||||||
end,
|
|
||||||
"LSP code action",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
M.nvimtree = {
|
|
||||||
plugin = true,
|
|
||||||
|
|
||||||
n = {
|
|
||||||
-- toggle
|
|
||||||
["<C-n>"] = { "<cmd> NvimTreeToggle <CR>", "Toggle nvimtree" },
|
|
||||||
|
|
||||||
-- focus
|
|
||||||
["<leader>e"] = { "<cmd> NvimTreeFocus <CR>", "Focus nvimtree" },
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
M.telescope = {
|
|
||||||
plugin = true,
|
|
||||||
|
|
||||||
n = {
|
|
||||||
-- find
|
|
||||||
["<leader>ff"] = { "<cmd> Telescope find_files <CR>", "Find files" },
|
|
||||||
["<leader>fa"] = { "<cmd> Telescope find_files follow=true no_ignore=true hidden=true <CR>", "Find all" },
|
|
||||||
["<leader>fw"] = { "<cmd> Telescope live_grep <CR>", "Live grep" },
|
|
||||||
["<leader>fb"] = { "<cmd> Telescope buffers <CR>", "Find buffers" },
|
|
||||||
["<leader>fh"] = { "<cmd> Telescope help_tags <CR>", "Help page" },
|
|
||||||
["<leader>fo"] = { "<cmd> Telescope oldfiles <CR>", "Find oldfiles" },
|
|
||||||
["<leader>fz"] = { "<cmd> Telescope current_buffer_fuzzy_find <CR>", "Find in current buffer" },
|
|
||||||
|
|
||||||
-- git
|
|
||||||
["<leader>cm"] = { "<cmd> Telescope git_commits <CR>", "Git commits" },
|
|
||||||
["<leader>gt"] = { "<cmd> Telescope git_status <CR>", "Git status" },
|
|
||||||
|
|
||||||
-- pick a hidden term
|
|
||||||
["<leader>pt"] = { "<cmd> Telescope terms <CR>", "Pick hidden term" },
|
|
||||||
|
|
||||||
-- theme switcher
|
|
||||||
["<leader>th"] = { "<cmd> Telescope themes <CR>", "Nvchad themes" },
|
|
||||||
|
|
||||||
["<leader>ma"] = { "<cmd> Telescope marks <CR>", "telescope bookmarks" },
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
M.nvterm = {
|
|
||||||
plugin = true,
|
|
||||||
|
|
||||||
t = {
|
|
||||||
-- toggle in terminal mode
|
|
||||||
["<A-i>"] = {
|
|
||||||
function()
|
|
||||||
require("nvterm.terminal").toggle "float"
|
|
||||||
end,
|
|
||||||
"Toggle floating term",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<A-h>"] = {
|
|
||||||
function()
|
|
||||||
require("nvterm.terminal").toggle "horizontal"
|
|
||||||
end,
|
|
||||||
"Toggle horizontal term",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<A-v>"] = {
|
|
||||||
function()
|
|
||||||
require("nvterm.terminal").toggle "vertical"
|
|
||||||
end,
|
|
||||||
"Toggle vertical term",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
n = {
|
|
||||||
-- toggle in normal mode
|
|
||||||
["<A-i>"] = {
|
|
||||||
function()
|
|
||||||
require("nvterm.terminal").toggle "float"
|
|
||||||
end,
|
|
||||||
"Toggle floating term",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<A-h>"] = {
|
|
||||||
function()
|
|
||||||
require("nvterm.terminal").toggle "horizontal"
|
|
||||||
end,
|
|
||||||
"Toggle horizontal term",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<A-v>"] = {
|
|
||||||
function()
|
|
||||||
require("nvterm.terminal").toggle "vertical"
|
|
||||||
end,
|
|
||||||
"Toggle vertical term",
|
|
||||||
},
|
|
||||||
|
|
||||||
-- new
|
|
||||||
["<leader>h"] = {
|
|
||||||
function()
|
|
||||||
require("nvterm.terminal").new "horizontal"
|
|
||||||
end,
|
|
||||||
"New horizontal term",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<leader>v"] = {
|
|
||||||
function()
|
|
||||||
require("nvterm.terminal").new "vertical"
|
|
||||||
end,
|
|
||||||
"New vertical term",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
M.whichkey = {
|
|
||||||
plugin = true,
|
|
||||||
|
|
||||||
n = {
|
|
||||||
["<leader>wK"] = {
|
|
||||||
function()
|
|
||||||
vim.cmd "WhichKey"
|
|
||||||
end,
|
|
||||||
"Which-key all keymaps",
|
|
||||||
},
|
|
||||||
["<leader>wk"] = {
|
|
||||||
function()
|
|
||||||
local input = vim.fn.input "WhichKey: "
|
|
||||||
vim.cmd("WhichKey " .. input)
|
|
||||||
end,
|
|
||||||
"Which-key query lookup",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
M.blankline = {
|
|
||||||
plugin = true,
|
|
||||||
|
|
||||||
n = {
|
|
||||||
["<leader>cc"] = {
|
|
||||||
function()
|
|
||||||
local ok, start = require("indent_blankline.utils").get_current_context(
|
|
||||||
vim.g.indent_blankline_context_patterns,
|
|
||||||
vim.g.indent_blankline_use_treesitter_scope
|
|
||||||
)
|
|
||||||
|
|
||||||
if ok then
|
|
||||||
vim.api.nvim_win_set_cursor(vim.api.nvim_get_current_win(), { start, 0 })
|
|
||||||
vim.cmd [[normal! _]]
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
|
|
||||||
"Jump to current context",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
M.gitsigns = {
|
|
||||||
plugin = true,
|
|
||||||
|
|
||||||
n = {
|
|
||||||
-- Navigation through hunks
|
|
||||||
["]c"] = {
|
|
||||||
function()
|
|
||||||
if vim.wo.diff then
|
|
||||||
return "]c"
|
|
||||||
end
|
|
||||||
vim.schedule(function()
|
|
||||||
require("gitsigns").next_hunk()
|
|
||||||
end)
|
|
||||||
return "<Ignore>"
|
|
||||||
end,
|
|
||||||
"Jump to next hunk",
|
|
||||||
opts = { expr = true },
|
|
||||||
},
|
|
||||||
|
|
||||||
["[c"] = {
|
|
||||||
function()
|
|
||||||
if vim.wo.diff then
|
|
||||||
return "[c"
|
|
||||||
end
|
|
||||||
vim.schedule(function()
|
|
||||||
require("gitsigns").prev_hunk()
|
|
||||||
end)
|
|
||||||
return "<Ignore>"
|
|
||||||
end,
|
|
||||||
"Jump to prev hunk",
|
|
||||||
opts = { expr = true },
|
|
||||||
},
|
|
||||||
|
|
||||||
-- Actions
|
|
||||||
["<leader>rh"] = {
|
|
||||||
function()
|
|
||||||
require("gitsigns").reset_hunk()
|
|
||||||
end,
|
|
||||||
"Reset hunk",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<leader>ph"] = {
|
|
||||||
function()
|
|
||||||
require("gitsigns").preview_hunk()
|
|
||||||
end,
|
|
||||||
"Preview hunk",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<leader>gb"] = {
|
|
||||||
function()
|
|
||||||
package.loaded.gitsigns.blame_line()
|
|
||||||
end,
|
|
||||||
"Blame line",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<leader>td"] = {
|
|
||||||
function()
|
|
||||||
require("gitsigns").toggle_deleted()
|
|
||||||
end,
|
|
||||||
"Toggle deleted",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|
@ -1,118 +0,0 @@
|
||||||
local M = {}
|
|
||||||
local merge_tb = vim.tbl_deep_extend
|
|
||||||
|
|
||||||
M.load_config = function()
|
|
||||||
local config = require "core.default_config"
|
|
||||||
local chadrc_path = vim.api.nvim_get_runtime_file("lua/custom/chadrc.lua", false)[1]
|
|
||||||
|
|
||||||
if chadrc_path then
|
|
||||||
local chadrc = dofile(chadrc_path)
|
|
||||||
|
|
||||||
config.mappings = M.remove_disabled_keys(chadrc.mappings, config.mappings)
|
|
||||||
config = merge_tb("force", config, chadrc)
|
|
||||||
config.mappings.disabled = nil
|
|
||||||
end
|
|
||||||
|
|
||||||
return config
|
|
||||||
end
|
|
||||||
|
|
||||||
M.remove_disabled_keys = function(chadrc_mappings, default_mappings)
|
|
||||||
if not chadrc_mappings then
|
|
||||||
return default_mappings
|
|
||||||
end
|
|
||||||
|
|
||||||
-- store keys in a array with true value to compare
|
|
||||||
local keys_to_disable = {}
|
|
||||||
for _, mappings in pairs(chadrc_mappings) do
|
|
||||||
for mode, section_keys in pairs(mappings) do
|
|
||||||
if not keys_to_disable[mode] then
|
|
||||||
keys_to_disable[mode] = {}
|
|
||||||
end
|
|
||||||
section_keys = (type(section_keys) == "table" and section_keys) or {}
|
|
||||||
for k, _ in pairs(section_keys) do
|
|
||||||
keys_to_disable[mode][k] = true
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
-- make a copy as we need to modify default_mappings
|
|
||||||
for section_name, section_mappings in pairs(default_mappings) do
|
|
||||||
for mode, mode_mappings in pairs(section_mappings) do
|
|
||||||
mode_mappings = (type(mode_mappings) == "table" and mode_mappings) or {}
|
|
||||||
for k, _ in pairs(mode_mappings) do
|
|
||||||
-- if key if found then remove from default_mappings
|
|
||||||
if keys_to_disable[mode] and keys_to_disable[mode][k] then
|
|
||||||
default_mappings[section_name][mode][k] = nil
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return default_mappings
|
|
||||||
end
|
|
||||||
|
|
||||||
M.load_mappings = function(section, mapping_opt)
|
|
||||||
vim.schedule(function()
|
|
||||||
local function set_section_map(section_values)
|
|
||||||
if section_values.plugin then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
section_values.plugin = nil
|
|
||||||
|
|
||||||
for mode, mode_values in pairs(section_values) do
|
|
||||||
local default_opts = merge_tb("force", { mode = mode }, mapping_opt or {})
|
|
||||||
for keybind, mapping_info in pairs(mode_values) do
|
|
||||||
-- merge default + user opts
|
|
||||||
local opts = merge_tb("force", default_opts, mapping_info.opts or {})
|
|
||||||
|
|
||||||
mapping_info.opts, opts.mode = nil, nil
|
|
||||||
opts.desc = mapping_info[2]
|
|
||||||
|
|
||||||
vim.keymap.set(mode, keybind, mapping_info[1], opts)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
local mappings = require("core.utils").load_config().mappings
|
|
||||||
|
|
||||||
if type(section) == "string" then
|
|
||||||
mappings[section]["plugin"] = nil
|
|
||||||
mappings = { mappings[section] }
|
|
||||||
end
|
|
||||||
|
|
||||||
for _, sect in pairs(mappings) do
|
|
||||||
set_section_map(sect)
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
end
|
|
||||||
|
|
||||||
M.lazy_load = function(plugin)
|
|
||||||
vim.api.nvim_create_autocmd({ "BufRead", "BufWinEnter", "BufNewFile" }, {
|
|
||||||
group = vim.api.nvim_create_augroup("BeLazyOnFileOpen" .. plugin, {}),
|
|
||||||
callback = function()
|
|
||||||
local file = vim.fn.expand "%"
|
|
||||||
local condition = file ~= "NvimTree_1" and file ~= "[lazy]" and file ~= ""
|
|
||||||
|
|
||||||
if condition then
|
|
||||||
vim.api.nvim_del_augroup_by_name("BeLazyOnFileOpen" .. plugin)
|
|
||||||
|
|
||||||
-- dont defer for treesitter as it will show slow highlighting
|
|
||||||
-- This deferring only happens only when we do "nvim filename"
|
|
||||||
if plugin ~= "nvim-treesitter" then
|
|
||||||
vim.schedule(function()
|
|
||||||
require("lazy").load { plugins = plugin }
|
|
||||||
|
|
||||||
if plugin == "nvim-lspconfig" then
|
|
||||||
vim.cmd "silent! do FileType"
|
|
||||||
end
|
|
||||||
end, 0)
|
|
||||||
else
|
|
||||||
require("lazy").load { plugins = plugin }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
# Example_config
|
|
||||||
|
|
||||||
This can be used as an example custom config for NvChad. Do check the https://github.com/NvChad/nvcommunity
|
|
||||||
|
|
@ -1,35 +0,0 @@
|
||||||
---@type ChadrcConfig
|
|
||||||
local M = {}
|
|
||||||
|
|
||||||
-- Path to overriding theme and highlights files
|
|
||||||
local highlights = require "custom.highlights"
|
|
||||||
|
|
||||||
M.ui = {
|
|
||||||
theme = "bearded-arc",
|
|
||||||
theme_toggle = { "nord", "nord" },
|
|
||||||
|
|
||||||
hl_override = highlights.override,
|
|
||||||
hl_add = highlights.add,
|
|
||||||
|
|
||||||
cmp = {
|
|
||||||
style = "atom",
|
|
||||||
selected_item_bg = "colored",
|
|
||||||
},
|
|
||||||
|
|
||||||
nvdash = {
|
|
||||||
load_on_startup = true,
|
|
||||||
},
|
|
||||||
|
|
||||||
statusline = {
|
|
||||||
theme = "default",
|
|
||||||
separator_style = "round",
|
|
||||||
lspprogress_len = 40,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
M.plugins = "custom.plugins"
|
|
||||||
|
|
||||||
-- check core.mappings for table structure
|
|
||||||
M.mappings = require "custom.mappings"
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
--type conform.options
|
|
||||||
local options = {
|
|
||||||
lsp_fallback = true,
|
|
||||||
|
|
||||||
formatters_by_ft = {
|
|
||||||
lua = { "stylua" },
|
|
||||||
|
|
||||||
javascript = { "prettier" },
|
|
||||||
typescript = { "prettier" },
|
|
||||||
css = { "prettier" },
|
|
||||||
html = { "prettier" },
|
|
||||||
|
|
||||||
sh = { "shfmt" },
|
|
||||||
},
|
|
||||||
|
|
||||||
-- adding same formatter for multiple filetypes can look too much work for some
|
|
||||||
-- instead of the above code you could just use a loop! the config is just a table after all!
|
|
||||||
|
|
||||||
-- format_on_save = {
|
|
||||||
-- -- These options will be passed to conform.format()
|
|
||||||
-- timeout_ms = 500,
|
|
||||||
-- lsp_fallback = true,
|
|
||||||
-- },
|
|
||||||
}
|
|
||||||
|
|
||||||
require("conform").setup(options)
|
|
||||||
|
|
@ -1,62 +0,0 @@
|
||||||
local M = {}
|
|
||||||
|
|
||||||
M.treesitter = {
|
|
||||||
ensure_installed = {
|
|
||||||
"vim",
|
|
||||||
"lua",
|
|
||||||
"html",
|
|
||||||
"css",
|
|
||||||
"javascript",
|
|
||||||
"typescript",
|
|
||||||
"tsx",
|
|
||||||
"c",
|
|
||||||
"markdown",
|
|
||||||
"markdown_inline",
|
|
||||||
},
|
|
||||||
indent = {
|
|
||||||
enable = true,
|
|
||||||
-- disable = {
|
|
||||||
-- "python"
|
|
||||||
-- },
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
M.mason = {
|
|
||||||
ensure_installed = {
|
|
||||||
-- lua stuff
|
|
||||||
"lua-language-server",
|
|
||||||
"stylua",
|
|
||||||
|
|
||||||
-- web dev stuff
|
|
||||||
"css-lsp",
|
|
||||||
"html-lsp",
|
|
||||||
"typescript-language-server",
|
|
||||||
"deno",
|
|
||||||
"prettier",
|
|
||||||
|
|
||||||
-- c/cpp stuff
|
|
||||||
"clangd",
|
|
||||||
"clang-format",
|
|
||||||
|
|
||||||
-- shell stuff
|
|
||||||
"shfmt",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
-- git support in nvimtree
|
|
||||||
M.nvimtree = {
|
|
||||||
git = {
|
|
||||||
enable = true,
|
|
||||||
},
|
|
||||||
|
|
||||||
renderer = {
|
|
||||||
highlight_git = true,
|
|
||||||
icons = {
|
|
||||||
show = {
|
|
||||||
git = true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
||||||
-- To find any highlight groups: "<cmd> Telescope highlights"
|
|
||||||
-- Each highlight group can take a table with variables fg, bg, bold, italic, etc
|
|
||||||
-- base30 variable names can also be used as colors
|
|
||||||
|
|
||||||
local M = {}
|
|
||||||
|
|
||||||
---@type Base46HLGroupsList
|
|
||||||
M.override = {
|
|
||||||
Comment = {
|
|
||||||
italic = true,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
---@type HLTable
|
|
||||||
M.add = {
|
|
||||||
NvimTreeOpenedFolderName = { fg = "green", bold = true },
|
|
||||||
}
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
-- local autocmd = vim.api.nvim_create_autocmd
|
|
||||||
|
|
||||||
-- Auto resize panes when resizing nvim window
|
|
||||||
-- autocmd("VimResized", {
|
|
||||||
-- pattern = "*",
|
|
||||||
-- command = "tabdo wincmd =",
|
|
||||||
-- })
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
||||||
---@type MappingsTable
|
|
||||||
local M = {}
|
|
||||||
M.general = {
|
|
||||||
n = {
|
|
||||||
[";"] = { ":", "enter command mode", opts = { nowait = true } },
|
|
||||||
|
|
||||||
-- format with conform
|
|
||||||
["<leader>fm"] = {
|
|
||||||
function()
|
|
||||||
require("conform").format()
|
|
||||||
end,
|
|
||||||
"formatting",
|
|
||||||
},
|
|
||||||
|
|
||||||
["<leader>tt"] = {
|
|
||||||
function()
|
|
||||||
require("base46").toggle_transparency()
|
|
||||||
end,
|
|
||||||
"toggle transparency"
|
|
||||||
},
|
|
||||||
|
|
||||||
["<leader>te"] = {
|
|
||||||
function()
|
|
||||||
require("base46").toggle_theme()
|
|
||||||
end,
|
|
||||||
"toggle theme"
|
|
||||||
},
|
|
||||||
|
|
||||||
["[t"] = { ":tabprevious<CR>", "previous tab" },
|
|
||||||
|
|
||||||
["]t"] = { ":tabnext<CR>", "next tab" },
|
|
||||||
|
|
||||||
["lg"] = {
|
|
||||||
function()
|
|
||||||
require("custom.terminals.lazygit").toggle()
|
|
||||||
end,
|
|
||||||
"Lazy Git"
|
|
||||||
},
|
|
||||||
|
|
||||||
["k9"] = {
|
|
||||||
function()
|
|
||||||
require("custom.terminals.k9s").toggle()
|
|
||||||
end,
|
|
||||||
"K9S"
|
|
||||||
},
|
|
||||||
},
|
|
||||||
v = {
|
|
||||||
[">"] = { ">gv", "indent"},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
-- more keybinds!
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|
@ -1,87 +0,0 @@
|
||||||
local overrides = require "custom.configs.overrides"
|
|
||||||
|
|
||||||
---@type NvPluginSpec[]
|
|
||||||
local plugins = {
|
|
||||||
|
|
||||||
-- Override plugin definition options
|
|
||||||
|
|
||||||
{
|
|
||||||
"neovim/nvim-lspconfig",
|
|
||||||
config = function()
|
|
||||||
require "plugins.configs.lspconfig"
|
|
||||||
require "custom.configs.lspconfig"
|
|
||||||
end, -- Override to setup mason-lspconfig
|
|
||||||
},
|
|
||||||
|
|
||||||
-- override plugin configs
|
|
||||||
{
|
|
||||||
"williamboman/mason.nvim",
|
|
||||||
opts = overrides.mason,
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"nvim-treesitter/nvim-treesitter",
|
|
||||||
opts = overrides.treesitter,
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"nvim-tree/nvim-tree.lua",
|
|
||||||
opts = overrides.nvimtree,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- Install a plugin
|
|
||||||
{
|
|
||||||
"max397574/better-escape.nvim",
|
|
||||||
event = "InsertEnter",
|
|
||||||
config = function()
|
|
||||||
require("better_escape").setup()
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"stevearc/conform.nvim",
|
|
||||||
-- for users those who want auto-save conform + lazyloading!
|
|
||||||
-- event = "BufWritePre"
|
|
||||||
config = function()
|
|
||||||
require "custom.configs.conform"
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"kylechui/nvim-surround",
|
|
||||||
version = "*", -- Use for stability; omit to use `main` branch for the latest features
|
|
||||||
event = "VeryLazy",
|
|
||||||
config = function()
|
|
||||||
require("nvim-surround").setup {
|
|
||||||
-- Configuration here, or leave empty to use defaults
|
|
||||||
}
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"akinsho/toggleterm.nvim",
|
|
||||||
version = "*",
|
|
||||||
config = true,
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"b0o/schemastore.nvim",
|
|
||||||
version = "*",
|
|
||||||
}
|
|
||||||
|
|
||||||
-- To make a plugin not be loaded
|
|
||||||
-- {
|
|
||||||
-- "NvChad/nvim-colorizer.lua",
|
|
||||||
-- enabled = false
|
|
||||||
-- },
|
|
||||||
|
|
||||||
-- All NvChad plugins are lazy-loaded by default
|
|
||||||
-- For a plugin to be loaded, you will need to set either `ft`, `cmd`, `keys`, `event`, or set `lazy = false`
|
|
||||||
-- If you want a plugin to load on startup, add `lazy = false` to a plugin spec, for example
|
|
||||||
-- {
|
|
||||||
-- "mg979/vim-visual-multi",
|
|
||||||
-- lazy = false,
|
|
||||||
-- }
|
|
||||||
}
|
|
||||||
|
|
||||||
return plugins
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
local M = {
|
|
||||||
toggle = function()
|
|
||||||
local Terminal = require("toggleterm.terminal").Terminal
|
|
||||||
local k9s = Terminal:new { cmd = "k9s", direction = 'float', hidden = true }
|
|
||||||
k9s:toggle()
|
|
||||||
end,
|
|
||||||
}
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
local M = {
|
|
||||||
toggle = function()
|
|
||||||
local Terminal = require("toggleterm.terminal").Terminal
|
|
||||||
local lazygit = Terminal:new { cmd = "lazygit", direction = 'float', hidden = true }
|
|
||||||
lazygit:toggle()
|
|
||||||
end,
|
|
||||||
}
|
|
||||||
|
|
||||||
return M
|
|
||||||
78
nvim/lua/mappings.lua
Normal file
78
nvim/lua/mappings.lua
Normal file
|
|
@ -0,0 +1,78 @@
|
||||||
|
require "nvchad.mappings"
|
||||||
|
|
||||||
|
local nomap = vim.keymap.del
|
||||||
|
|
||||||
|
nomap("t", "<ESC>")
|
||||||
|
|
||||||
|
-- add yours here
|
||||||
|
|
||||||
|
local map = vim.keymap.set
|
||||||
|
|
||||||
|
map("n", ";", ":", { desc = "CMD enter command mode" })
|
||||||
|
|
||||||
|
map("i", "jk", "<ESC>")
|
||||||
|
|
||||||
|
-- Formatting
|
||||||
|
map("n", "<leader>fm", function()
|
||||||
|
require("conform").format()
|
||||||
|
end, { desc = "Format" })
|
||||||
|
|
||||||
|
-- Theming
|
||||||
|
map("n", "<leader>tt", function()
|
||||||
|
require("base46").toggle_transparency()
|
||||||
|
end, { desc = "Toggle Transparency" })
|
||||||
|
|
||||||
|
map("n", "<leader>te", function()
|
||||||
|
require("base46").toggle_theme()
|
||||||
|
end, { desc = "Toggle Theme" })
|
||||||
|
|
||||||
|
-- Terminals
|
||||||
|
map("n", "lg", function()
|
||||||
|
require("nvchad.term").toggle { pos = "float", id = "lazygit", cmd = "lazygit" }
|
||||||
|
end, { desc = "Lazy Git" })
|
||||||
|
|
||||||
|
map("n", "ld", function()
|
||||||
|
require("nvchad.term").toggle { pos = "float", id = "lazydocker", cmd = "lazydocker" }
|
||||||
|
end, { desc = "Lazy Docker" })
|
||||||
|
|
||||||
|
map("n", "md", function()
|
||||||
|
require("nvchad.term").toggle { pos = "float", id = "glow", cmd = "glow" }
|
||||||
|
end, { desc = "Glow" })
|
||||||
|
|
||||||
|
map("t", "<C-q>", function()
|
||||||
|
local win = vim.api.nvim_get_current_win()
|
||||||
|
vim.api.nvim_win_close(win, true)
|
||||||
|
end, { desc = "Close Terminal" })
|
||||||
|
|
||||||
|
-- Testing
|
||||||
|
|
||||||
|
map("n", "<leader>ts", function()
|
||||||
|
require("neotest").summary.toggle()
|
||||||
|
end, { desc = "Test - Summary" })
|
||||||
|
|
||||||
|
-- Debugging
|
||||||
|
|
||||||
|
map("n", "<leader>dB", function()
|
||||||
|
require("dap").set_breakpoint(vim.fn.input "Breakpoint condition: ")
|
||||||
|
end, { desc = "Breakpoint condition" })
|
||||||
|
|
||||||
|
map("n", "<leader>db", function()
|
||||||
|
require("dap").toggle_breakpoint()
|
||||||
|
end, { desc = "Toggle Breakpoint" })
|
||||||
|
-- { "<leader>dc", function() require("dap").continue() end, desc = "Continue" },
|
||||||
|
-- { "<leader>da", function() require("dap").continue({ before = get_args }) end, desc = "Run with Args" },
|
||||||
|
-- { "<leader>dC", function() require("dap").run_to_cursor() end, desc = "Run to Cursor" },
|
||||||
|
-- { "<leader>dg", function() require("dap").goto_() end, desc = "Go to Line (No Execute)" },
|
||||||
|
-- { "<leader>di", function() require("dap").step_into() end, desc = "Step Into" },
|
||||||
|
-- { "<leader>dj", function() require("dap").down() end, desc = "Down" },
|
||||||
|
-- { "<leader>dk", function() require("dap").up() end, desc = "Up" },
|
||||||
|
-- { "<leader>dl", function() require("dap").run_last() end, desc = "Run Last" },
|
||||||
|
-- { "<leader>do", function() require("dap").step_out() end, desc = "Step Out" },
|
||||||
|
-- { "<leader>dO", function() require("dap").step_over() end, desc = "Step Over" },
|
||||||
|
-- { "<leader>dp", function() require("dap").pause() end, desc = "Pause" },
|
||||||
|
-- { "<leader>dr", function() require("dap").repl.toggle() end, desc = "Toggle REPL" },
|
||||||
|
-- { "<leader>ds", function() require("dap").session() end, desc = "Session" },
|
||||||
|
-- { "<leader>dt", function() require("dap").terminate() end, desc = "Terminate" },
|
||||||
|
-- { "<leader>dw", function() require("dap.ui.widgets").hover() end, desc = "Widgets" },
|
||||||
|
|
||||||
|
-- map({ "n", "i", "v" }, "<C-s>", "<cmd> w <cr>")
|
||||||
6
nvim/lua/options.lua
Normal file
6
nvim/lua/options.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
require "nvchad.options"
|
||||||
|
|
||||||
|
-- add yours here!
|
||||||
|
|
||||||
|
-- local o = vim.o
|
||||||
|
-- o.cursorlineopt ='both' -- to enable cursorline!
|
||||||
|
|
@ -1,120 +0,0 @@
|
||||||
local cmp = require "cmp"
|
|
||||||
|
|
||||||
dofile(vim.g.base46_cache .. "cmp")
|
|
||||||
|
|
||||||
local cmp_ui = require("core.utils").load_config().ui.cmp
|
|
||||||
local cmp_style = cmp_ui.style
|
|
||||||
|
|
||||||
local field_arrangement = {
|
|
||||||
atom = { "kind", "abbr", "menu" },
|
|
||||||
atom_colored = { "kind", "abbr", "menu" },
|
|
||||||
}
|
|
||||||
|
|
||||||
local formatting_style = {
|
|
||||||
-- default fields order i.e completion word + item.kind + item.kind icons
|
|
||||||
fields = field_arrangement[cmp_style] or { "abbr", "kind", "menu" },
|
|
||||||
|
|
||||||
format = function(_, item)
|
|
||||||
local icons = require "nvchad.icons.lspkind"
|
|
||||||
local icon = (cmp_ui.icons and icons[item.kind]) or ""
|
|
||||||
|
|
||||||
if cmp_style == "atom" or cmp_style == "atom_colored" then
|
|
||||||
icon = " " .. icon .. " "
|
|
||||||
item.menu = cmp_ui.lspkind_text and " (" .. item.kind .. ")" or ""
|
|
||||||
item.kind = icon
|
|
||||||
else
|
|
||||||
icon = cmp_ui.lspkind_text and (" " .. icon .. " ") or icon
|
|
||||||
item.kind = string.format("%s %s", icon, cmp_ui.lspkind_text and item.kind or "")
|
|
||||||
end
|
|
||||||
|
|
||||||
return item
|
|
||||||
end,
|
|
||||||
}
|
|
||||||
|
|
||||||
local function border(hl_name)
|
|
||||||
return {
|
|
||||||
{ "╭", hl_name },
|
|
||||||
{ "─", hl_name },
|
|
||||||
{ "╮", hl_name },
|
|
||||||
{ "│", hl_name },
|
|
||||||
{ "╯", hl_name },
|
|
||||||
{ "─", hl_name },
|
|
||||||
{ "╰", hl_name },
|
|
||||||
{ "│", hl_name },
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
local options = {
|
|
||||||
completion = {
|
|
||||||
completeopt = "menu,menuone",
|
|
||||||
},
|
|
||||||
|
|
||||||
window = {
|
|
||||||
completion = {
|
|
||||||
side_padding = (cmp_style ~= "atom" and cmp_style ~= "atom_colored") and 1 or 0,
|
|
||||||
winhighlight = "Normal:CmpPmenu,CursorLine:CmpSel,Search:None",
|
|
||||||
scrollbar = false,
|
|
||||||
},
|
|
||||||
documentation = {
|
|
||||||
border = border "CmpDocBorder",
|
|
||||||
winhighlight = "Normal:CmpDoc",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
snippet = {
|
|
||||||
expand = function(args)
|
|
||||||
require("luasnip").lsp_expand(args.body)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
formatting = formatting_style,
|
|
||||||
|
|
||||||
mapping = {
|
|
||||||
["<C-p>"] = cmp.mapping.select_prev_item(),
|
|
||||||
["<C-n>"] = cmp.mapping.select_next_item(),
|
|
||||||
["<C-d>"] = cmp.mapping.scroll_docs(-4),
|
|
||||||
["<C-f>"] = cmp.mapping.scroll_docs(4),
|
|
||||||
["<C-Space>"] = cmp.mapping.complete(),
|
|
||||||
["<C-e>"] = cmp.mapping.close(),
|
|
||||||
["<CR>"] = cmp.mapping.confirm {
|
|
||||||
behavior = cmp.ConfirmBehavior.Insert,
|
|
||||||
select = true,
|
|
||||||
},
|
|
||||||
["<Tab>"] = cmp.mapping(function(fallback)
|
|
||||||
if cmp.visible() then
|
|
||||||
cmp.select_next_item()
|
|
||||||
elseif require("luasnip").expand_or_jumpable() then
|
|
||||||
vim.fn.feedkeys(vim.api.nvim_replace_termcodes("<Plug>luasnip-expand-or-jump", true, true, true), "")
|
|
||||||
else
|
|
||||||
fallback()
|
|
||||||
end
|
|
||||||
end, {
|
|
||||||
"i",
|
|
||||||
"s",
|
|
||||||
}),
|
|
||||||
["<S-Tab>"] = cmp.mapping(function(fallback)
|
|
||||||
if cmp.visible() then
|
|
||||||
cmp.select_prev_item()
|
|
||||||
elseif require("luasnip").jumpable(-1) then
|
|
||||||
vim.fn.feedkeys(vim.api.nvim_replace_termcodes("<Plug>luasnip-jump-prev", true, true, true), "")
|
|
||||||
else
|
|
||||||
fallback()
|
|
||||||
end
|
|
||||||
end, {
|
|
||||||
"i",
|
|
||||||
"s",
|
|
||||||
}),
|
|
||||||
},
|
|
||||||
sources = {
|
|
||||||
{ name = "nvim_lsp" },
|
|
||||||
{ name = "luasnip" },
|
|
||||||
{ name = "buffer" },
|
|
||||||
{ name = "nvim_lua" },
|
|
||||||
{ name = "path" },
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
if cmp_style ~= "atom" and cmp_style ~= "atom_colored" then
|
|
||||||
options.window.completion.border = border "CmpBorder"
|
|
||||||
end
|
|
||||||
|
|
||||||
return options
|
|
||||||
|
|
@ -1,64 +0,0 @@
|
||||||
dofile(vim.g.base46_cache .. "lsp")
|
|
||||||
require "nvchad.lsp"
|
|
||||||
|
|
||||||
local M = {}
|
|
||||||
local utils = require "core.utils"
|
|
||||||
|
|
||||||
-- export on_attach & capabilities for custom lspconfigs
|
|
||||||
|
|
||||||
M.on_attach = function(client, bufnr)
|
|
||||||
utils.load_mappings("lspconfig", { buffer = bufnr })
|
|
||||||
|
|
||||||
if client.server_capabilities.signatureHelpProvider then
|
|
||||||
require("nvchad.signature").setup(client)
|
|
||||||
end
|
|
||||||
|
|
||||||
if not utils.load_config().ui.lsp_semantic_tokens and client.supports_method "textDocument/semanticTokens" then
|
|
||||||
client.server_capabilities.semanticTokensProvider = nil
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
M.capabilities = vim.lsp.protocol.make_client_capabilities()
|
|
||||||
|
|
||||||
M.capabilities.textDocument.completion.completionItem = {
|
|
||||||
documentationFormat = { "markdown", "plaintext" },
|
|
||||||
snippetSupport = true,
|
|
||||||
preselectSupport = true,
|
|
||||||
insertReplaceSupport = true,
|
|
||||||
labelDetailsSupport = true,
|
|
||||||
deprecatedSupport = true,
|
|
||||||
commitCharactersSupport = true,
|
|
||||||
tagSupport = { valueSet = { 1 } },
|
|
||||||
resolveSupport = {
|
|
||||||
properties = {
|
|
||||||
"documentation",
|
|
||||||
"detail",
|
|
||||||
"additionalTextEdits",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
require("lspconfig").lua_ls.setup {
|
|
||||||
on_attach = M.on_attach,
|
|
||||||
capabilities = M.capabilities,
|
|
||||||
|
|
||||||
settings = {
|
|
||||||
Lua = {
|
|
||||||
diagnostics = {
|
|
||||||
globals = { "vim" },
|
|
||||||
},
|
|
||||||
workspace = {
|
|
||||||
library = {
|
|
||||||
[vim.fn.expand "$VIMRUNTIME/lua"] = true,
|
|
||||||
[vim.fn.expand "$VIMRUNTIME/lua/vim/lsp"] = true,
|
|
||||||
[vim.fn.stdpath "data" .. "/lazy/ui/nvchad_types"] = true,
|
|
||||||
[vim.fn.stdpath "data" .. "/lazy/lazy.nvim/lua/lazy"] = true,
|
|
||||||
},
|
|
||||||
maxPreload = 100000,
|
|
||||||
preloadFileSize = 10000,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|
@ -1,28 +0,0 @@
|
||||||
local options = {
|
|
||||||
ensure_installed = { "lua-language-server" }, -- not an option from mason.nvim
|
|
||||||
|
|
||||||
PATH = "skip",
|
|
||||||
|
|
||||||
ui = {
|
|
||||||
icons = {
|
|
||||||
package_pending = " ",
|
|
||||||
package_installed = " ",
|
|
||||||
package_uninstalled = " ",
|
|
||||||
},
|
|
||||||
|
|
||||||
keymaps = {
|
|
||||||
toggle_server_expand = "<CR>",
|
|
||||||
install_server = "i",
|
|
||||||
update_server = "u",
|
|
||||||
check_server_version = "c",
|
|
||||||
update_all_servers = "U",
|
|
||||||
check_outdated_servers = "C",
|
|
||||||
uninstall_server = "X",
|
|
||||||
cancel_installation = "<C-c>",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
max_concurrent_installers = 10,
|
|
||||||
}
|
|
||||||
|
|
||||||
return options
|
|
||||||
|
|
@ -1,77 +0,0 @@
|
||||||
local options = {
|
|
||||||
filters = {
|
|
||||||
dotfiles = false,
|
|
||||||
exclude = { vim.fn.stdpath "config" .. "/lua/custom" },
|
|
||||||
},
|
|
||||||
disable_netrw = true,
|
|
||||||
hijack_netrw = true,
|
|
||||||
hijack_cursor = true,
|
|
||||||
hijack_unnamed_buffer_when_opening = false,
|
|
||||||
sync_root_with_cwd = true,
|
|
||||||
update_focused_file = {
|
|
||||||
enable = true,
|
|
||||||
update_root = false,
|
|
||||||
},
|
|
||||||
view = {
|
|
||||||
adaptive_size = false,
|
|
||||||
side = "left",
|
|
||||||
width = 30,
|
|
||||||
preserve_window_proportions = true,
|
|
||||||
},
|
|
||||||
git = {
|
|
||||||
enable = false,
|
|
||||||
ignore = true,
|
|
||||||
},
|
|
||||||
filesystem_watchers = {
|
|
||||||
enable = true,
|
|
||||||
},
|
|
||||||
actions = {
|
|
||||||
open_file = {
|
|
||||||
resize_window = true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
renderer = {
|
|
||||||
root_folder_label = false,
|
|
||||||
highlight_git = false,
|
|
||||||
highlight_opened_files = "none",
|
|
||||||
|
|
||||||
indent_markers = {
|
|
||||||
enable = false,
|
|
||||||
},
|
|
||||||
|
|
||||||
icons = {
|
|
||||||
show = {
|
|
||||||
file = true,
|
|
||||||
folder = true,
|
|
||||||
folder_arrow = true,
|
|
||||||
git = false,
|
|
||||||
},
|
|
||||||
|
|
||||||
glyphs = {
|
|
||||||
default = "",
|
|
||||||
symlink = "",
|
|
||||||
folder = {
|
|
||||||
default = "",
|
|
||||||
empty = "",
|
|
||||||
empty_open = "",
|
|
||||||
open = "",
|
|
||||||
symlink = "",
|
|
||||||
symlink_open = "",
|
|
||||||
arrow_open = "",
|
|
||||||
arrow_closed = "",
|
|
||||||
},
|
|
||||||
git = {
|
|
||||||
unstaged = "✗",
|
|
||||||
staged = "✓",
|
|
||||||
unmerged = "",
|
|
||||||
renamed = "➜",
|
|
||||||
untracked = "★",
|
|
||||||
deleted = "",
|
|
||||||
ignored = "◌",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
return options
|
|
||||||
|
|
@ -1,66 +0,0 @@
|
||||||
local M = {}
|
|
||||||
local utils = require "core.utils"
|
|
||||||
|
|
||||||
M.blankline = {
|
|
||||||
indentLine_enabled = 1,
|
|
||||||
filetype_exclude = {
|
|
||||||
"help",
|
|
||||||
"terminal",
|
|
||||||
"lazy",
|
|
||||||
"lspinfo",
|
|
||||||
"TelescopePrompt",
|
|
||||||
"TelescopeResults",
|
|
||||||
"mason",
|
|
||||||
"nvdash",
|
|
||||||
"nvcheatsheet",
|
|
||||||
"",
|
|
||||||
},
|
|
||||||
buftype_exclude = { "terminal" },
|
|
||||||
show_trailing_blankline_indent = false,
|
|
||||||
show_first_indent_level = false,
|
|
||||||
show_current_context = true,
|
|
||||||
show_current_context_start = true,
|
|
||||||
}
|
|
||||||
|
|
||||||
M.luasnip = function(opts)
|
|
||||||
require("luasnip").config.set_config(opts)
|
|
||||||
|
|
||||||
-- vscode format
|
|
||||||
require("luasnip.loaders.from_vscode").lazy_load()
|
|
||||||
require("luasnip.loaders.from_vscode").lazy_load { paths = vim.g.vscode_snippets_path or "" }
|
|
||||||
|
|
||||||
-- snipmate format
|
|
||||||
require("luasnip.loaders.from_snipmate").load()
|
|
||||||
require("luasnip.loaders.from_snipmate").lazy_load { paths = vim.g.snipmate_snippets_path or "" }
|
|
||||||
|
|
||||||
-- lua format
|
|
||||||
require("luasnip.loaders.from_lua").load()
|
|
||||||
require("luasnip.loaders.from_lua").lazy_load { paths = vim.g.lua_snippets_path or "" }
|
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd("InsertLeave", {
|
|
||||||
callback = function()
|
|
||||||
if
|
|
||||||
require("luasnip").session.current_nodes[vim.api.nvim_get_current_buf()]
|
|
||||||
and not require("luasnip").session.jump_active
|
|
||||||
then
|
|
||||||
require("luasnip").unlink_current()
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
end
|
|
||||||
|
|
||||||
M.gitsigns = {
|
|
||||||
signs = {
|
|
||||||
add = { text = "│" },
|
|
||||||
change = { text = "│" },
|
|
||||||
delete = { text = "" },
|
|
||||||
topdelete = { text = "‾" },
|
|
||||||
changedelete = { text = "~" },
|
|
||||||
untracked = { text = "│" },
|
|
||||||
},
|
|
||||||
on_attach = function(bufnr)
|
|
||||||
utils.load_mappings("gitsigns", { buffer = bufnr })
|
|
||||||
end,
|
|
||||||
}
|
|
||||||
|
|
||||||
return M
|
|
||||||
|
|
@ -1,55 +0,0 @@
|
||||||
local options = {
|
|
||||||
defaults = {
|
|
||||||
vimgrep_arguments = {
|
|
||||||
"rg",
|
|
||||||
"-L",
|
|
||||||
"--color=never",
|
|
||||||
"--no-heading",
|
|
||||||
"--with-filename",
|
|
||||||
"--line-number",
|
|
||||||
"--column",
|
|
||||||
"--smart-case",
|
|
||||||
},
|
|
||||||
prompt_prefix = " ",
|
|
||||||
selection_caret = " ",
|
|
||||||
entry_prefix = " ",
|
|
||||||
initial_mode = "insert",
|
|
||||||
selection_strategy = "reset",
|
|
||||||
sorting_strategy = "ascending",
|
|
||||||
layout_strategy = "horizontal",
|
|
||||||
layout_config = {
|
|
||||||
horizontal = {
|
|
||||||
prompt_position = "top",
|
|
||||||
preview_width = 0.55,
|
|
||||||
results_width = 0.8,
|
|
||||||
},
|
|
||||||
vertical = {
|
|
||||||
mirror = false,
|
|
||||||
},
|
|
||||||
width = 0.87,
|
|
||||||
height = 0.80,
|
|
||||||
preview_cutoff = 120,
|
|
||||||
},
|
|
||||||
file_sorter = require("telescope.sorters").get_fuzzy_file,
|
|
||||||
file_ignore_patterns = { "node_modules" },
|
|
||||||
generic_sorter = require("telescope.sorters").get_generic_fuzzy_sorter,
|
|
||||||
path_display = { "truncate" },
|
|
||||||
winblend = 0,
|
|
||||||
border = {},
|
|
||||||
borderchars = { "─", "│", "─", "│", "╭", "╮", "╯", "╰" },
|
|
||||||
color_devicons = true,
|
|
||||||
set_env = { ["COLORTERM"] = "truecolor" }, -- default = nil,
|
|
||||||
file_previewer = require("telescope.previewers").vim_buffer_cat.new,
|
|
||||||
grep_previewer = require("telescope.previewers").vim_buffer_vimgrep.new,
|
|
||||||
qflist_previewer = require("telescope.previewers").vim_buffer_qflist.new,
|
|
||||||
-- Developer configurations: Not meant for general override
|
|
||||||
buffer_previewer_maker = require("telescope.previewers").buffer_previewer_maker,
|
|
||||||
mappings = {
|
|
||||||
n = { ["q"] = require("telescope.actions").close },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
extensions_list = { "themes", "terms" },
|
|
||||||
}
|
|
||||||
|
|
||||||
return options
|
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
local options = {
|
|
||||||
ensure_installed = { "lua" },
|
|
||||||
|
|
||||||
highlight = {
|
|
||||||
enable = true,
|
|
||||||
use_languagetree = true,
|
|
||||||
},
|
|
||||||
|
|
||||||
indent = { enable = true },
|
|
||||||
}
|
|
||||||
|
|
||||||
return options
|
|
||||||
|
|
@ -1,253 +1,170 @@
|
||||||
-- All plugins have lazy=true by default,to load a plugin on startup just lazy=false
|
return {
|
||||||
-- List of all default plugins & their definitions
|
|
||||||
local default_plugins = {
|
|
||||||
|
|
||||||
"nvim-lua/plenary.nvim",
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"NvChad/base46",
|
"stevearc/conform.nvim",
|
||||||
branch = "v2.0",
|
event = "BufWritePre",
|
||||||
build = function()
|
config = function()
|
||||||
require("base46").load_all_highlights()
|
require "configs.conform"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
|
||||||
"NvChad/ui",
|
|
||||||
branch = "v2.0",
|
|
||||||
lazy = false,
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"NvChad/nvterm",
|
|
||||||
init = function()
|
|
||||||
require("core.utils").load_mappings "nvterm"
|
|
||||||
end,
|
|
||||||
config = function(_, opts)
|
|
||||||
require "base46.term"
|
|
||||||
require("nvterm").setup(opts)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"NvChad/nvim-colorizer.lua",
|
|
||||||
event = "User FilePost",
|
|
||||||
config = function(_, opts)
|
|
||||||
require("colorizer").setup(opts)
|
|
||||||
|
|
||||||
-- execute colorizer as soon as possible
|
|
||||||
vim.defer_fn(function()
|
|
||||||
require("colorizer").attach_to_buffer(0)
|
|
||||||
end, 0)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"nvim-tree/nvim-web-devicons",
|
|
||||||
opts = function()
|
|
||||||
return { override = require "nvchad.icons.devicons" }
|
|
||||||
end,
|
|
||||||
config = function(_, opts)
|
|
||||||
dofile(vim.g.base46_cache .. "devicons")
|
|
||||||
require("nvim-web-devicons").setup(opts)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"lukas-reineke/indent-blankline.nvim",
|
|
||||||
version = "2.20.7",
|
|
||||||
event = "User FilePost",
|
|
||||||
opts = function()
|
|
||||||
return require("plugins.configs.others").blankline
|
|
||||||
end,
|
|
||||||
config = function(_, opts)
|
|
||||||
require("core.utils").load_mappings "blankline"
|
|
||||||
dofile(vim.g.base46_cache .. "blankline")
|
|
||||||
require("indent_blankline").setup(opts)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"nvim-treesitter/nvim-treesitter",
|
|
||||||
event = { "BufReadPost", "BufNewFile" },
|
|
||||||
tag = "v0.9.2",
|
|
||||||
cmd = { "TSInstall", "TSBufEnable", "TSBufDisable", "TSModuleInfo" },
|
|
||||||
build = ":TSUpdate",
|
|
||||||
opts = function()
|
|
||||||
return require "plugins.configs.treesitter"
|
|
||||||
end,
|
|
||||||
config = function(_, opts)
|
|
||||||
dofile(vim.g.base46_cache .. "syntax")
|
|
||||||
require("nvim-treesitter.configs").setup(opts)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- git stuff
|
|
||||||
{
|
|
||||||
"lewis6991/gitsigns.nvim",
|
|
||||||
event = "User FilePost",
|
|
||||||
opts = function()
|
|
||||||
return require("plugins.configs.others").gitsigns
|
|
||||||
end,
|
|
||||||
config = function(_, opts)
|
|
||||||
dofile(vim.g.base46_cache .. "git")
|
|
||||||
require("gitsigns").setup(opts)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- lsp stuff
|
|
||||||
{
|
{
|
||||||
"williamboman/mason.nvim",
|
"williamboman/mason.nvim",
|
||||||
cmd = { "Mason", "MasonInstall", "MasonInstallAll", "MasonUpdate" },
|
opts = {
|
||||||
opts = function()
|
ensure_installed = {
|
||||||
return require "plugins.configs.mason"
|
-- lua
|
||||||
end,
|
"lua-language-server",
|
||||||
config = function(_, opts)
|
"stylua",
|
||||||
dofile(vim.g.base46_cache .. "mason")
|
|
||||||
require("mason").setup(opts)
|
|
||||||
|
|
||||||
-- custom nvchad cmd to install all mason binaries listed
|
-- web dev
|
||||||
vim.api.nvim_create_user_command("MasonInstallAll", function()
|
"html-lsp",
|
||||||
if opts.ensure_installed and #opts.ensure_installed > 0 then
|
"css-lsp",
|
||||||
vim.cmd("MasonInstall " .. table.concat(opts.ensure_installed, " "))
|
"css-variables-language-server",
|
||||||
end
|
"prettier",
|
||||||
end, {})
|
"tailwindcss-language-server",
|
||||||
|
"eslint-lsp",
|
||||||
|
"graphql-language-service-cli",
|
||||||
|
"js-debug-adapter",
|
||||||
|
|
||||||
vim.g.mason_binaries_list = opts.ensure_installed
|
-- shell
|
||||||
|
"shfmt",
|
||||||
|
"bash-language-server",
|
||||||
|
"bash-debug-adapter",
|
||||||
|
|
||||||
|
-- docker
|
||||||
|
"docker-compose-language-server",
|
||||||
|
"dockerfile-language-server",
|
||||||
|
|
||||||
|
-- go
|
||||||
|
"gopls",
|
||||||
|
"go-debug-adapter",
|
||||||
|
|
||||||
|
-- python
|
||||||
|
"debugpy",
|
||||||
|
|
||||||
|
-- web debug
|
||||||
|
"firefox-debug-adapter",
|
||||||
|
|
||||||
|
-- markdown
|
||||||
|
"marksman",
|
||||||
|
|
||||||
|
-- sql
|
||||||
|
"sqls",
|
||||||
|
|
||||||
|
-- configs
|
||||||
|
"json-lsp",
|
||||||
|
"yaml-language-server"
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"mfussenegger/nvim-dap",
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"jay-babu/mason-nvim-dap.nvim",
|
||||||
|
dependencies = "mason.nvim",
|
||||||
|
cmd = { "DapInstall", "DapUninstall" },
|
||||||
|
opts = {
|
||||||
|
automatic_installation = true,
|
||||||
|
ensure_installed = { "js", "firefox", "bash", "python" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"williamboman/mason-lspconfig.nvim",
|
||||||
|
cmd = { "LspInstall", "LspUninstall" },
|
||||||
|
config = function()
|
||||||
|
require("mason-lspconfig").setup()
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
event = "User FilePost",
|
|
||||||
config = function()
|
config = function()
|
||||||
require "plugins.configs.lspconfig"
|
require("nvchad.configs.lspconfig").defaults()
|
||||||
|
require "configs.lspconfig"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
-- load luasnips + cmp related in insert mode only
|
|
||||||
{
|
{
|
||||||
"hrsh7th/nvim-cmp",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
event = "InsertEnter",
|
|
||||||
dependencies = {
|
|
||||||
{
|
|
||||||
-- snippet plugin
|
|
||||||
"L3MON4D3/LuaSnip",
|
|
||||||
dependencies = "rafamadriz/friendly-snippets",
|
|
||||||
opts = { history = true, updateevents = "TextChanged,TextChangedI" },
|
|
||||||
config = function(_, opts)
|
|
||||||
require("plugins.configs.others").luasnip(opts)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- autopairing of (){}[] etc
|
|
||||||
{
|
|
||||||
"windwp/nvim-autopairs",
|
|
||||||
opts = {
|
opts = {
|
||||||
fast_wrap = {},
|
ensure_installed = {
|
||||||
disable_filetype = { "TelescopePrompt", "vim" },
|
"vim",
|
||||||
|
"lua",
|
||||||
|
"vimdoc",
|
||||||
|
"html",
|
||||||
|
"css",
|
||||||
|
"javascript",
|
||||||
|
"jsdoc",
|
||||||
|
"typescript",
|
||||||
|
"tsx",
|
||||||
|
"markdown",
|
||||||
|
"markdown_inline",
|
||||||
|
"json",
|
||||||
|
"jsonc",
|
||||||
|
"yaml",
|
||||||
|
"graphql",
|
||||||
|
"go",
|
||||||
|
"bash",
|
||||||
|
"dockerfile",
|
||||||
|
"gitignore",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
config = function(_, opts)
|
|
||||||
require("nvim-autopairs").setup(opts)
|
|
||||||
|
|
||||||
-- setup cmp for autopairs
|
|
||||||
local cmp_autopairs = require "nvim-autopairs.completion.cmp"
|
|
||||||
require("cmp").event:on("confirm_done", cmp_autopairs.on_confirm_done())
|
|
||||||
end,
|
|
||||||
},
|
},
|
||||||
|
|
||||||
-- cmp sources plugins
|
|
||||||
{
|
{
|
||||||
"saadparwaiz1/cmp_luasnip",
|
"pmizio/typescript-tools.nvim",
|
||||||
"hrsh7th/cmp-nvim-lua",
|
dependencies = { "nvim-lua/plenary.nvim", "neovim/nvim-lspconfig" },
|
||||||
"hrsh7th/cmp-nvim-lsp",
|
lazy = false,
|
||||||
"hrsh7th/cmp-buffer",
|
opts = {},
|
||||||
"hrsh7th/cmp-path",
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"nvim-neotest/neotest",
|
||||||
|
dependencies = {
|
||||||
|
"nvim-neotest/nvim-nio",
|
||||||
|
"nvim-lua/plenary.nvim",
|
||||||
|
"antoinemadec/FixCursorHold.nvim",
|
||||||
|
"nvim-treesitter/nvim-treesitter",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
opts = function()
|
|
||||||
return require "plugins.configs.cmp"
|
{
|
||||||
|
"nvim-neotest/neotest",
|
||||||
|
dependencies = {
|
||||||
|
"nvim-neotest/neotest-jest",
|
||||||
|
},
|
||||||
|
config = function()
|
||||||
|
require("neotest").setup {
|
||||||
|
adapters = {
|
||||||
|
require "neotest-jest" {
|
||||||
|
jestCommand = "yarn test --",
|
||||||
|
-- jestConfigFile = "custom.jest.config.ts",
|
||||||
|
-- env = { CI = true },
|
||||||
|
cwd = function(path)
|
||||||
|
return vim.fn.getcwd()
|
||||||
end,
|
end,
|
||||||
config = function(_, opts)
|
},
|
||||||
require("cmp").setup(opts)
|
},
|
||||||
|
}
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"numToStr/Comment.nvim",
|
"kylechui/nvim-surround",
|
||||||
keys = {
|
version = "*", -- Use for stability; omit to use `main` branch for the latest features
|
||||||
{ "gcc", mode = "n", desc = "Comment toggle current line" },
|
event = "VeryLazy",
|
||||||
{ "gc", mode = { "n", "o" }, desc = "Comment toggle linewise" },
|
config = function()
|
||||||
{ "gc", mode = "x", desc = "Comment toggle linewise (visual)" },
|
require("nvim-surround").setup {
|
||||||
{ "gbc", mode = "n", desc = "Comment toggle current block" },
|
-- Configuration here, or leave empty to use defaults
|
||||||
{ "gb", mode = { "n", "o" }, desc = "Comment toggle blockwise" },
|
}
|
||||||
{ "gb", mode = "x", desc = "Comment toggle blockwise (visual)" },
|
|
||||||
},
|
|
||||||
init = function()
|
|
||||||
require("core.utils").load_mappings "comment"
|
|
||||||
end,
|
|
||||||
config = function(_, opts)
|
|
||||||
require("Comment").setup(opts)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- file managing , picker etc
|
|
||||||
{
|
|
||||||
"nvim-tree/nvim-tree.lua",
|
|
||||||
cmd = { "NvimTreeToggle", "NvimTreeFocus" },
|
|
||||||
init = function()
|
|
||||||
require("core.utils").load_mappings "nvimtree"
|
|
||||||
end,
|
|
||||||
opts = function()
|
|
||||||
return require "plugins.configs.nvimtree"
|
|
||||||
end,
|
|
||||||
config = function(_, opts)
|
|
||||||
dofile(vim.g.base46_cache .. "nvimtree")
|
|
||||||
require("nvim-tree").setup(opts)
|
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"nvim-telescope/telescope.nvim",
|
"b0o/schemastore.nvim",
|
||||||
dependencies = { "nvim-treesitter/nvim-treesitter" },
|
version = "*",
|
||||||
cmd = "Telescope",
|
|
||||||
init = function()
|
|
||||||
require("core.utils").load_mappings "telescope"
|
|
||||||
end,
|
|
||||||
opts = function()
|
|
||||||
return require "plugins.configs.telescope"
|
|
||||||
end,
|
|
||||||
config = function(_, opts)
|
|
||||||
dofile(vim.g.base46_cache .. "telescope")
|
|
||||||
local telescope = require "telescope"
|
|
||||||
telescope.setup(opts)
|
|
||||||
|
|
||||||
-- load extensions
|
|
||||||
for _, ext in ipairs(opts.extensions_list) do
|
|
||||||
telescope.load_extension(ext)
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- Only load whichkey after all the gui
|
|
||||||
{
|
|
||||||
"folke/which-key.nvim",
|
|
||||||
keys = { "<leader>", "<c-r>", "<c-w>", '"', "'", "`", "c", "v", "g" },
|
|
||||||
init = function()
|
|
||||||
require("core.utils").load_mappings "whichkey"
|
|
||||||
end,
|
|
||||||
cmd = "WhichKey",
|
|
||||||
config = function(_, opts)
|
|
||||||
dofile(vim.g.base46_cache .. "whichkey")
|
|
||||||
require("which-key").setup(opts)
|
|
||||||
end,
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
local config = require("core.utils").load_config()
|
|
||||||
|
|
||||||
if #config.plugins > 0 then
|
|
||||||
table.insert(default_plugins, { import = config.plugins })
|
|
||||||
end
|
|
||||||
|
|
||||||
require("lazy").setup(default_plugins, config.lazy_nvim)
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue