Optimise some startup events

This commit is contained in:
Evie Litherland-Smith 2023-05-16 12:38:46 +01:00
parent 0516fde7d3
commit 449f2f3f6d
3 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
return {
"https://github.com/direnv/direnv.vim.git",
name = "direnv.vim",
lazy = false,
event = { "DirChangedPre" },
config = function()
vim.g.direnv_auto = 1
vim.g.direnv_silent_load = 1

View file

@ -1,7 +1,7 @@
return {
"nvim-lualine/lualine.nvim",
dependencies = { "nvim-tree/nvim-web-devicons", "SmiteshP/nvim-navic", "folke/noice.nvim" },
event = { "BufEnter" },
event = { "BufReadPre", "BufNewFile" },
config = true,
opts = {
options = {

View file

@ -1,7 +1,7 @@
return {
"ahmedkhalf/project.nvim",
name = "project_nvim",
event = { "BufEnter" },
event = { "BufReadPre", "BufNewFile" },
config = true,
opts = {
ignore_lsp = { "efm", "null-ls" },