Update config / Update nvui to 3.0

This commit is contained in:
Alessandro
2024-10-09 11:39:42 +02:00
parent 30874243c9
commit 72d4f759b7
11 changed files with 86 additions and 106 deletions

View File

@@ -5,16 +5,13 @@ return {
},
{
"neovim/nvim-lspconfig",
config = function()
require "configs.lspconfig"
end,
opts =
require "configs.lspconfig"
},
{
"Pocco81/auto-save.nvim",
config = function()
require("auto-save").setup()
end,
lazy = false,
opts = {},
event = { "BufEnter" },
},
{
"nvim-treesitter/nvim-treesitter",
@@ -29,7 +26,6 @@ return {
},
{
"hrsh7th/nvim-cmp",
opts = require "configs.cmp",
},
{
"3rd/image.nvim",
@@ -40,6 +36,7 @@ return {
package.path = package.path .. ";" .. vim.fn.expand "$HOME" .. "/.luarocks/share/lua/5.1/?/init.lua"
package.path = package.path .. ";" .. vim.fn.expand "$HOME" .. "/.luarocks/share/lua/5.1/?.lua"
end,
ft = { "markdown", "" },
ft = { "markdown" },
event = { "BufRead *.png", "BufRead *.jpg", "BufRead *.jpeg", "BufRead *.gif", "BufRead *.wepb", "BufRead *.avif" },
},
}