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
+9
View File
@@ -0,0 +1,9 @@
return {
"LazyVim/LazyVim",
opts = {
news = {
lazyvim = false,
neovim = false,
},
},
}
+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",
},
},
},
},
}
+36
View File
@@ -0,0 +1,36 @@
return {
"nvim-neo-tree/neo-tree.nvim",
opts = {
window = {
mappings = {
["<cr>"] = function(state)
local node = state.tree:get_node()
if node.type == "directory" then
require("neo-tree.sources.filesystem.commands").toggle_node(state)
else
require("neo-tree.sources.filesystem.commands").open(state)
require("neo-tree.command").execute({ action = "close" })
end
end,
["l"] = function(state)
local node = state.tree:get_node()
if node.type == "directory" then
require("neo-tree.sources.filesystem.commands").toggle_node(state)
else
require("neo-tree.sources.filesystem.commands").open(state)
require("neo-tree.command").execute({ action = "close" })
end
end,
},
},
},
keys = {
{
"<leader>h",
function()
require("neo-tree.command").execute({ action = "focus", source = "filesystem", toggle = true })
end,
desc = "Toggle File Explorer",
},
},
}
@@ -0,0 +1,8 @@
return {
"folke/snacks.nvim",
opts = {
scroll = {
enabled = false, -- Disable scrolling animations
},
},
}
+1
View File
@@ -0,0 +1 @@
/home/khodowany/.config/omarchy/current/theme/neovim.lua