summaryrefslogtreecommitdiff
path: root/fnl/config/auto-session.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/config/auto-session.fnl')
-rw-r--r--fnl/config/auto-session.fnl17
1 files changed, 0 insertions, 17 deletions
diff --git a/fnl/config/auto-session.fnl b/fnl/config/auto-session.fnl
deleted file mode 100644
index 97834f7..0000000
--- a/fnl/config/auto-session.fnl
+++ /dev/null
@@ -1,17 +0,0 @@
-;; Session manager.
-(module config.auto-session {autoload {util config.util}})
-
-(def- auto-opts {:log_level :info
- :auto_session_enable_last_session false
- :auto_session_root_dir (.. (vim.fn.stdpath :data) :/sessions/)
- :auto_session_enabled true
- :auto_save_enabled nil
- :auto_restore_enabled nil
- :auto_session_suppress_dirs [(os.getenv :HOME)]
- :auto_session_use_git_branch nil
- :bypass_session_save_file_types [:alpha]})
-
-(set vim.o.sessionoptions
- "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal")
-
-(util.setup :auto-session auto-opts)