This commit is contained in:
2025-12-11 17:17:21 +01:00
commit 3add673455
43 changed files with 2799 additions and 0 deletions

65
nvim/lua/plugins/init.lua Normal file
View File

@@ -0,0 +1,65 @@
return {
{
"stevearc/conform.nvim",
-- event = 'BufWritePre', -- uncomment for format on save
opts = require "configs.conform",
},
-- These are some examples, uncomment them if you want to see them work!
{
"neovim/nvim-lspconfig",
config = function()
require "configs.lspconfig"
end,
},
-- test new blink
-- { import = "nvchad.blink.lazyspec" },
{
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
"vim", "lua", "vimdoc",
"html", "css", "rust", "toml"
},
},
},
{
"nvim-telescope/telescope.nvim",
opts = {
defaults = {
file_ignore_patterns = {}, -- Don't ignore any patterns by default
},
pickers = {
find_files = {
hidden = true,
no_ignore = true, -- Show files ignored by .gitignore
no_ignore_parent = true,
},
},
},
},
{
"nvim-tree/nvim-tree.lua",
opts = {
filters = {
dotfiles = false,
git_ignored = false, -- Show files ignored by .gitignore
},
view = {
adaptive_size = false,
},
renderer = {
highlight_git = true,
icons = {
show = {
git = true,
},
},
},
},
},
}