Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions roles/cui/templates/.config/nvim/lua/plugins/init.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
return {
{ "RRethy/vim-illuminate" },
{
"RRethy/vim-illuminate",
event = { "BufReadPost", "BufNewFile" },
config = function()
require("illuminate").configure({
providers = { "lsp", "regex" },
})
end,
},
{ "andymass/vim-matchup" },
{ "hashivim/vim-terraform" },
{
Expand Down Expand Up @@ -52,7 +60,14 @@ return {
},
{ "williamboman/mason-lspconfig.nvim" },
{ "williamboman/mason.nvim" },
{ "windwp/nvim-ts-autotag" },
{
"windwp/nvim-ts-autotag",
event = "InsertEnter",
dependencies = { "nvim-treesitter/nvim-treesitter" },
config = function()
require("nvim-ts-autotag").setup()
end,
},
{
"zbirenbaum/copilot.lua",
cmd = "Copilot",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ return {

-- Set up mason-lspconfig with handlers
require("mason-lspconfig").setup({
ensure_installed = { "rust_analyzer", "ts_ls", "eslint", "oxc" },
ensure_installed = { "rust_analyzer", "ts_ls", "eslint", "oxlint" },
automatic_installation = true,
handlers = {
-- Default handler - will be called for each installed server
Expand Down
Loading