added session manager
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
-- automatically opens all marked files
|
---- automatically opens all marked files
|
||||||
_G.harpoon_open_marks()
|
--_G.harpoon_open_marks()
|
||||||
-- sets tab switch mode to harpoon marks
|
---- sets tab switch mode to harpoon marks
|
||||||
_G.harpoon_btoggle(true)
|
--_G.harpoon_btoggle(true)
|
||||||
|
|||||||
+21
-9
@@ -15,15 +15,6 @@ require("packer").startup(function()
|
|||||||
require("hop").setup({ keys = "etovxqpdygfblzhckisuran" })
|
require("hop").setup({ keys = "etovxqpdygfblzhckisuran" })
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
--use {
|
|
||||||
-- "phaazon/hop.nvim",
|
|
||||||
-- as = "hop",
|
|
||||||
-- config = function()
|
|
||||||
-- -- you can configure Hop the way you like here; see :h hop-config
|
|
||||||
-- require "hop".setup {}
|
|
||||||
-- --require "hop".setup {keys = "etovxqpdygfblzhckisuran"}
|
|
||||||
-- end
|
|
||||||
--}
|
|
||||||
|
|
||||||
-- TABLE
|
-- TABLE
|
||||||
--use "dhruvasagar/vim-table-mode"
|
--use "dhruvasagar/vim-table-mode"
|
||||||
@@ -101,4 +92,25 @@ require("packer").startup(function()
|
|||||||
|
|
||||||
-- HTML/CSS
|
-- HTML/CSS
|
||||||
use("mattn/emmet-vim")
|
use("mattn/emmet-vim")
|
||||||
|
--use({
|
||||||
|
-- "rmagatti/auto-session",
|
||||||
|
-- config = function()
|
||||||
|
-- require("auto-session").setup({
|
||||||
|
-- log_level = "info",
|
||||||
|
-- auto_session_suppress_dirs = { "~/", "~/Projects" },
|
||||||
|
-- auto_session_use_git_branch = true,
|
||||||
|
-- auto_save_enabled = false,
|
||||||
|
-- auto_restore_enabled = false,
|
||||||
|
-- })
|
||||||
|
-- end,
|
||||||
|
--})
|
||||||
|
use({
|
||||||
|
"olimorris/persisted.nvim",
|
||||||
|
config = function()
|
||||||
|
require("persisted").setup({
|
||||||
|
use_git_branch = true,
|
||||||
|
autoload = true,
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
})
|
||||||
end)
|
end)
|
||||||
|
|||||||
Reference in New Issue
Block a user