(neovim) Try to speed up my own setup.
This commit is contained in:
parent
737fb45fac
commit
fce7f40419
8 changed files with 17 additions and 5 deletions
|
@ -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"
|
||||
|
|
|
@ -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({
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
return {
|
||||
"lewis6991/gitsigns.nvim",
|
||||
lazy = false,
|
||||
config = function()
|
||||
require("gitsigns").setup({
|
||||
signs = {
|
||||
|
|
|
@ -3,6 +3,7 @@ return {
|
|||
dependencies = {
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
},
|
||||
event = "VeryLazy",
|
||||
config = function()
|
||||
require("lualine").setup({
|
||||
options = {
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
return {
|
||||
"echasnovski/mini.pairs",
|
||||
event = "VeryLazy",
|
||||
config = function()
|
||||
require("mini.pairs").setup({
|
||||
modes = { insert = true, command = true, terminal = false },
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
return {
|
||||
"loctvl842/monokai-pro.nvim",
|
||||
priority = 10000,
|
||||
lazy = false,
|
||||
config = function()
|
||||
require("monokai-pro").setup({
|
||||
filter = "classic",
|
||||
|
|
|
@ -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 },
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
return {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
build = ":TSUpdate",
|
||||
event = "VeryLazy",
|
||||
config = function()
|
||||
require("nvim-treesitter.configs").setup({
|
||||
ensure_installed = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue