Setup Dump

This commit is contained in:
khodowany
2026-04-26 22:18:42 -05:00
commit 772eb31287
18 changed files with 544 additions and 0 deletions
+71
View File
@@ -0,0 +1,71 @@
return {
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
opts = {
ensure_installed = {
"c",
"cpp",
"cmake",
"python",
"lua",
"vim",
"bash",
"javascript",
"perl",
"rust",
},
highlight = {
enable = true,
},
},
},
{
"mason-org/mason.nvim",
opts = {
ensure_installed = {
"clangd",
"cmake-language-server",
"codelldb",
"pyright",
"typescript-language-server",
"perlnavigator",
"rust-analyzer",
},
},
},
{
"neovim/nvim-lspconfig",
opts = {
inlay_hints = { enabled = false },
},
},
{
"akinsho/toggleterm.nvim",
version = "*",
opts = {
size = 30,
open_mapping = [[<c-\>]],
hide_numbers = true,
shade_terminals = true,
direction = "horizontal",
float_opts = {
border = "rounded",
},
},
},
{
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
c = { "clang_format" },
cpp = { "clang_format" },
},
formatters = {
clang_format = {
command = "clang-format",
},
},
},
},
}