Moved nvim into the skel folder, removed yuck plugin as it's not in use

This commit is contained in:
2025-05-15 15:39:04 -04:00
parent 3411aa882f
commit 473a33d041
9 changed files with 0 additions and 5 deletions

View File

@@ -0,0 +1,24 @@
return {
{
"LazyVim/LazyVim",
import = "lazyvim.plugins",
opts = {
colorscheme = function()
local tokyonight = require("tokyonight")
tokyonight.setup({
style = "night",
on_highlights = function(hl)
hl.LineNrAbove = {
fg = "#6ab8ff",
}
hl.LineNrBelow = {
fg = "#ff6188",
}
end,
on_colors = function() end,
})
tokyonight.load()
end,
},
},
}

View File

@@ -0,0 +1,12 @@
return {
{
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
-- {"3rd/image.nvim", opts = {}}, -- Optional image support in preview window: See `# Preview Mode` for more information
},
},
}

View File

@@ -0,0 +1,14 @@
return {
{
{
"akinsho/bufferline.nvim",
version = "*",
dependencies = "nvim-tree/nvim-web-devicons",
opts = {
options = {
mode = "tabs",
},
},
},
},
}

View File

@@ -0,0 +1,18 @@
local plugin = {
"nvim-treesitter/nvim-treesitter",
build = function()
require("nvim-treesitter.install").update({ with_sync = true })()
end,
config = function()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "elixir", "heex", "javascript", "html" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end,
}
return { plugin }