Skip to content
Merged
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
3 changes: 1 addition & 2 deletions config/nvim-work/lua/plugins/lazy/JABS.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
return {
"matbme/JABS.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
-- "VeryLazy", "BufWinEnter" or "VimEnter" as you prefer
event = "VimEnter",
event = "VeryLazy", -- Changed from "VimEnter" to avoid conflict with startify
config = function()
require("jabs").setup({
-- {"center", "center"}, {"right", "bottom"}, etc.
Expand Down
6 changes: 3 additions & 3 deletions config/nvim-work/lua/plugins/lazy/neorg.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
return {
{
"vhyrro/luarocks.nvim",
priority = 1000, -- Loads before other plugins
priority = 1000, -- Load before neorg
config = true, -- Runs require("luarocks-nvim").setup()
},
{
"nvim-neorg/neorg",
lazy = false, -- Load immediately to ensure keybindings are available
priority = 1000, -- High priority loading
lazy = false, -- Load immediately so keybindings are always available
priority = 999, -- Load after luarocks but before most other plugins
dependencies = {
"luarocks.nvim",
"nvim-telescope/telescope.nvim", -- keep if you later re-enable integrations
Expand Down
2 changes: 1 addition & 1 deletion config/nvim-work/lua/plugins/lazy/snacks.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ return {
animate = { enabled = true }, -- https://github.com/folke/snacks.nvim/blob/main/docs/animate.md
bigfile = { enabled = true }, -- https://github.com/folke/snacks.nvim/blob/main/docs/bigfile.md
bufdelete = { enabled = false }, -- https://github.com/folke/snacks.nvim/blob/main/docs/bufdelete.md
dashboard = { enabled = true }, -- https://github.com/folke/snacks.nvim/blob/main/docs/dashboard.md
dashboard = { enabled = false }, -- https://github.com/folke/snacks.nvim/blob/main/docs/dashboard.md
debug = { enabled = false }, -- https://github.com/folke/snacks.nvim/blob/main/docs/debug.md
dim = { enabled = false }, -- https://github.com/folke/snacks.nvim/blob/main/docs/dim.md
explorer = { enabled = false }, -- https://github.com/folke/snacks.nvim/blob/main/docs/explorer.md
Expand Down