1

Update generated neovim config

This commit is contained in:
2024-08-15 14:28:54 +02:00
parent 07409c223d
commit 25cfcf2941
3809 changed files with 351157 additions and 0 deletions

View File

@ -0,0 +1 @@
lua _G.session_file = 'tests/dir-sessions/Session.vim'

View File

@ -0,0 +1 @@
lua _G.session_file = 'tests/dir-sessions/global/session1'

View File

@ -0,0 +1 @@
lua _G.session_file = 'tests/dir-sessions/global/session2.vim'

View File

@ -0,0 +1,2 @@
-- This will be sourced as Lua code (read `:h -S` and `:h source`)
_G.session_file = 'tests/dir-sessions/global/session3.lua'

View File

@ -0,0 +1,7 @@
-- Avoid hit-enter-prompt
vim.o.cmdheight = 10
-- Avoid storing unnecessary data (also sometimes avoid hit-enter-prompt)
vim.o.swapfile = false
vim.cmd('set rtp+=.')
require('mini.sessions').setup({ autoread = true, autowrite = false, directory = 'tests/dir-sessions/local' })

View File

@ -0,0 +1,5 @@
-- Avoid storing unnecessary data (also sometimes avoid hit-enter-prompt)
vim.o.swapfile = false
vim.cmd('set rtp+=.')
require('mini.sessions').setup({ autowrite = true })

View File

@ -0,0 +1 @@
lua _G.session_file = 'tests/dir-sessions/local/Session.vim'

View File

@ -0,0 +1 @@
lua _G.session_file = 'tests/dir-sessions/local/alternative-local-session'