diff --git a/nvim/.config/nvim/lazy-lock.json b/nvim/.config/nvim/lazy-lock.json index 62b24d3..df33c87 100644 --- a/nvim/.config/nvim/lazy-lock.json +++ b/nvim/.config/nvim/lazy-lock.json @@ -46,7 +46,6 @@ "promise-async": { "branch": "main", "commit": "119e8961014c9bfaf1487bf3c2a393d254f337e2" }, "quicker.nvim": { "branch": "master", "commit": "fc041830fa7cf093786b0d5990d99cf3c7b0c129" }, "schemastore.nvim": { "branch": "main", "commit": "2abb594d69a43c0a48a11b30bb0ef17ad90dceea" }, - "scope.nvim": { "branch": "main", "commit": "228aabdb1b9cc74f0c0ccec88e79873857236e49" }, "sidekick.nvim": { "branch": "main", "commit": "c2bdf8cfcd87a6be5f8b84322c1b5052e78e302e" }, "snacks.nvim": { "branch": "main", "commit": "fe7cfe9800a182274d0f868a74b7263b8c0c020b" }, "tiny-inline-diagnostic.nvim": { "branch": "main", "commit": "ecce93ff7db4461e942c03e0fcc64bd785df4057" }, diff --git a/nvim/.config/nvim/lua/plugins/auto-session.lua b/nvim/.config/nvim/lua/plugins/auto-session.lua index dfdd951..eeafe7a 100644 --- a/nvim/.config/nvim/lua/plugins/auto-session.lua +++ b/nvim/.config/nvim/lua/plugins/auto-session.lua @@ -6,18 +6,12 @@ vim.opt.sessionoptions = { "help", "tabpages", "winsize", - "winpos", "terminal", - "localoptions", - "globals", } return { "rmagatti/auto-session", event = "VimEnter", - dependencies = { - "tiagovla/scope.nvim", - }, ---enables autocomplete for opts ---@module "auto-session" ---@type AutoSession.Config @@ -27,10 +21,6 @@ return { bypass_save_filetypes = { "alpha", "dashboard", "snacks_dashboard" }, -- or whatever dashboard you use purge_after_minutes = 43200, legacy_cmds = false, - pre_save_cmds = { - "ScopeSaveState", - }, - post_restore_cmds = { "ScopeLoadState" }, -- cwd_change_handling = true, -- git_use_branch_name = true, -- git_auto_restore_on_branch_change = true, diff --git a/nvim/.config/nvim/lua/plugins/scope.lua b/nvim/.config/nvim/lua/plugins/scope.lua deleted file mode 100644 index 8624e5d..0000000 --- a/nvim/.config/nvim/lua/plugins/scope.lua +++ /dev/null @@ -1,5 +0,0 @@ -return { - "tiagovla/scope.nvim", - lazy = true, - config = true, -}