148 lines
3.6 KiB
Lua
148 lines
3.6 KiB
Lua
return {
|
|
{
|
|
"stevearc/conform.nvim",
|
|
event = "BufWritePre",
|
|
opts = require "configs.conform",
|
|
},
|
|
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
config = function()
|
|
require "configs.lspconfig"
|
|
end,
|
|
},
|
|
|
|
{
|
|
"kdheepak/lazygit.nvim",
|
|
lazy = true,
|
|
cmd = {
|
|
"LazyGit",
|
|
"LazyGitConfig",
|
|
"LazyGitCurrentFile",
|
|
"LazyGitFilter",
|
|
"LazyGitFilterCurrentFile",
|
|
},
|
|
keys = {
|
|
{ "<leader>gg", "<cmd>LazyGit<cr>", desc = "LazyGit" },
|
|
},
|
|
},
|
|
{
|
|
"nvim-telescope/telescope.nvim",
|
|
dependencies = { "nvim-treesitter/nvim-treesitter" },
|
|
cmd = "Telescope",
|
|
opts = function()
|
|
local op = require "nvchad.configs.telescope"
|
|
op.defaults.file_ignore_patterns = {
|
|
".git",
|
|
"cache",
|
|
"node_modules",
|
|
"vendor",
|
|
}
|
|
return op
|
|
end,
|
|
},
|
|
{
|
|
"ThePrimeagen/harpoon",
|
|
branch = "harpoon2",
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
|
opts = {
|
|
menu = {
|
|
width = vim.api.nvim_win_get_width(0) - 4,
|
|
},
|
|
settings = {
|
|
save_on_toggle = true,
|
|
},
|
|
},
|
|
keys = function()
|
|
local keys = {
|
|
{
|
|
"<leader>H",
|
|
function()
|
|
require("harpoon"):list():add()
|
|
end,
|
|
desc = "Harpoon File",
|
|
},
|
|
{
|
|
"<leader>h",
|
|
function()
|
|
local harpoon = require "harpoon"
|
|
harpoon.ui:toggle_quick_menu(harpoon:list())
|
|
end,
|
|
desc = "Harpoon Quick Menu",
|
|
},
|
|
}
|
|
|
|
for i = 1, 6 do
|
|
table.insert(keys, {
|
|
"<F" .. i .. ">",
|
|
function()
|
|
require("harpoon"):list():select(i)
|
|
end,
|
|
desc = "Harpoon to File " .. i,
|
|
})
|
|
end
|
|
return keys
|
|
end,
|
|
},
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = {
|
|
ensure_installed = {
|
|
"bash",
|
|
"css",
|
|
"dockerfile",
|
|
"go",
|
|
"html",
|
|
"javascript",
|
|
"json",
|
|
"lua",
|
|
"kdl",
|
|
"make",
|
|
"markdown",
|
|
"nix",
|
|
"php",
|
|
"python",
|
|
"rust",
|
|
"templ",
|
|
"toml",
|
|
"tsx",
|
|
"typescript",
|
|
"twig",
|
|
"vim",
|
|
"vue",
|
|
"yaml",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"NvChad/nvim-colorizer.lua",
|
|
opts = {
|
|
filetypes = { "*" },
|
|
user_default_options = {
|
|
RGB = true, -- #RGB hex codes
|
|
RRGGBB = true, -- #RRGGBB hex codes
|
|
names = true, -- "Name" codes like Blue or blue
|
|
RRGGBBAA = false, -- #RRGGBBAA hex codes
|
|
AARRGGBB = false, -- 0xAARRGGBB hex codes
|
|
rgb_fn = true, -- CSS rgb() and rgba() functions
|
|
hsl_fn = true, -- CSS hsl() and hsla() functions
|
|
css = true, -- Enable all CSS features: rgb_fn, hsl_fn, names, RGB, RRGGBB
|
|
css_fn = true, -- Enable all CSS *functions*: rgb_fn, hsl_fn
|
|
-- Available modes for `mode`: foreground, background, virtualtext
|
|
mode = "background", -- Set the display mode.
|
|
-- Available methods are false / true / "normal" / "lsp" / "both"
|
|
-- True is same as normal
|
|
tailwind = true, -- Enable tailwind colors
|
|
-- parsers can contain values used in |user_default_options|
|
|
sass = { enable = false, parsers = { "css" } }, -- Enable sass colors
|
|
virtualtext = "■",
|
|
-- update color values even if buffer is not focused
|
|
-- example use: cmp_menu, cmp_docs
|
|
always_update = true,
|
|
},
|
|
-- all the sub-options of filetypes apply to buftypes
|
|
buftypes = {},
|
|
},
|
|
},
|
|
{ "lukas-reineke/indent-blankline.nvim", enabled = false },
|
|
}
|