(neovim) Try to speed up my own setup.

This commit is contained in:
Bartek Stalewski 2025-07-13 02:40:44 +02:00
parent 737fb45fac
commit fce7f40419
No known key found for this signature in database
8 changed files with 17 additions and 5 deletions

View file

@ -14,17 +14,23 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({ import = "plugins" }, {
require("lazy").setup({
spec = {
{ import = "plugins" },
},
defaults = {
lazy = true,
},
install = {
missing = true,
},
checker = {
enabled = true,
notify = false,
notify = true,
},
change_detection = {
enabled = true,
notify = false,
notify = true,
},
ui = {
-- border = "rounded"

View file

@ -1,10 +1,11 @@
return {
{ "L3MON4D3/LuaSnip", keys = {} },
{
"saghen/blink.cmp",
dependencies = {
"rafamadriz/friendly-snippets",
"L3MON4D3/LuaSnip",
},
event = "InsertEnter",
version = "*",
config = function()
require("blink.cmp").setup({

View file

@ -1,5 +1,6 @@
return {
"lewis6991/gitsigns.nvim",
lazy = false,
config = function()
require("gitsigns").setup({
signs = {

View file

@ -3,6 +3,7 @@ return {
dependencies = {
"nvim-tree/nvim-web-devicons",
},
event = "VeryLazy",
config = function()
require("lualine").setup({
options = {

View file

@ -1,5 +1,6 @@
return {
"echasnovski/mini.pairs",
event = "VeryLazy",
config = function()
require("mini.pairs").setup({
modes = { insert = true, command = true, terminal = false },

View file

@ -1,6 +1,7 @@
return {
"loctvl842/monokai-pro.nvim",
priority = 10000,
lazy = false,
config = function()
require("monokai-pro").setup({
filter = "classic",

View file

@ -7,7 +7,7 @@ return {
animate = { enabled = false },
bigfile = { enabled = false },
bufdelete = { enabled = true },
dashboard = { enabled = false },
dashboard = { enabled = true },
debug = { enabled = false },
dim = { enabled = false },
explorer = { enabled = true, replace_netrw = true },

View file

@ -1,6 +1,7 @@
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
event = "VeryLazy",
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = {