summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/lastplace.lua
diff options
context:
space:
mode:
authorYigit Sever2025-01-17 10:13:02 +0100
committerYigit Sever2025-01-17 10:13:02 +0100
commit2d697c3ebe0e35a8e8fe39eeb9d8f8a59bf0e248 (patch)
tree9ee0efd90bcfa450a4105520797f29673fd27d9c /.config/nvim/lua/plugins/lastplace.lua
parent2dbc978b686ad11e88e7615099219032bb0a0817 (diff)
downloaddotfiles-2d697c3ebe0e35a8e8fe39eeb9d8f8a59bf0e248.tar.gz
dotfiles-2d697c3ebe0e35a8e8fe39eeb9d8f8a59bf0e248.tar.bz2
dotfiles-2d697c3ebe0e35a8e8fe39eeb9d8f8a59bf0e248.zip
nvim: add lastplace plugin, remove autocmdHEADmain
Diffstat (limited to '.config/nvim/lua/plugins/lastplace.lua')
-rw-r--r--.config/nvim/lua/plugins/lastplace.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/lastplace.lua b/.config/nvim/lua/plugins/lastplace.lua
new file mode 100644
index 0000000..72e5c7f
--- /dev/null
+++ b/.config/nvim/lua/plugins/lastplace.lua
@@ -0,0 +1,11 @@
1return {
2 {
3 "ethanholz/nvim-lastplace",
4
5 opts = {
6 lastplace_ignore_buftype = { "quickfix", "nofile", "help" },
7 lastplace_ignore_filetype = { "gitcommit", "gitrebase", "svn", "hgcommit" },
8 lastplace_open_folds = true,
9 },
10 }
11}