diff options
author | Yigit Sever | 2025-01-17 10:13:02 +0100 |
---|---|---|
committer | Yigit Sever | 2025-01-17 10:13:02 +0100 |
commit | 2d697c3ebe0e35a8e8fe39eeb9d8f8a59bf0e248 (patch) | |
tree | 9ee0efd90bcfa450a4105520797f29673fd27d9c /.config/nvim/lua/plugins | |
parent | 2dbc978b686ad11e88e7615099219032bb0a0817 (diff) | |
download | dotfiles-2d697c3ebe0e35a8e8fe39eeb9d8f8a59bf0e248.tar.gz dotfiles-2d697c3ebe0e35a8e8fe39eeb9d8f8a59bf0e248.tar.bz2 dotfiles-2d697c3ebe0e35a8e8fe39eeb9d8f8a59bf0e248.zip |
Diffstat (limited to '.config/nvim/lua/plugins')
-rw-r--r-- | .config/nvim/lua/plugins/lastplace.lua | 11 |
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 @@ | |||
1 | return { | ||
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 | } | ||