Moved nvim into the skel folder, removed yuck plugin as it's not in use
This commit is contained in:
24
files/system/etc/skel/.config/nvim/lua/plugins/init.lua
Normal file
24
files/system/etc/skel/.config/nvim/lua/plugins/init.lua
Normal 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,
|
||||
},
|
||||
},
|
||||
}
|
12
files/system/etc/skel/.config/nvim/lua/plugins/neo-tree.lua
Normal file
12
files/system/etc/skel/.config/nvim/lua/plugins/neo-tree.lua
Normal 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
|
||||
},
|
||||
},
|
||||
}
|
@@ -0,0 +1,14 @@
|
||||
return {
|
||||
{
|
||||
{
|
||||
"akinsho/bufferline.nvim",
|
||||
version = "*",
|
||||
dependencies = "nvim-tree/nvim-web-devicons",
|
||||
opts = {
|
||||
options = {
|
||||
mode = "tabs",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
@@ -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 }
|
Reference in New Issue
Block a user