[vim] Ensure backup, swap, and undo directories exist so those state files are placed correctly
This commit is contained in:
parent
31492fe257
commit
3a3b73a915
2 changed files with 24 additions and 22 deletions
|
|
@ -5,6 +5,7 @@ vim.cmd [[ source ~/.vimrc.common ]]
|
||||||
|
|
||||||
require 'configuration'
|
require 'configuration'
|
||||||
require 'keys'
|
require 'keys'
|
||||||
|
require 'os'
|
||||||
|
|
||||||
vim.cmd [[ source ~/.vim/plugins.vim ]]
|
vim.cmd [[ source ~/.vim/plugins.vim ]]
|
||||||
|
|
||||||
|
|
@ -16,9 +17,9 @@ function ensure_metadata_directories_exist()
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, opt in ipairs(paths) do
|
for _, opt in ipairs(paths) do
|
||||||
local first_path = opt[1]
|
local firstPath = opt[1]
|
||||||
if string.find(first_path, "//$") then
|
if string.find(firstPath, "//$") then
|
||||||
os.execute("mkdir -p " .. first_path)
|
os.execute("mkdir", "-p", firstPath)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
3
vimrc
3
vimrc
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
source ~/.vimrc.common
|
source ~/.vimrc.common
|
||||||
|
|
||||||
|
if !has('nvim')
|
||||||
set nocompatible " use enhanced vim features
|
set nocompatible " use enhanced vim features
|
||||||
|
|
||||||
let s:localdir=expand("~/.local/vim")
|
let s:localdir=expand("~/.local/vim")
|
||||||
|
|
@ -23,4 +24,4 @@ let &viminfofile=expand(s:localdir . "/viminfo")
|
||||||
" : maximum number of lines of command history to save
|
" : maximum number of lines of command history to save
|
||||||
" s shada entries over 100 KiB are skipped
|
" s shada entries over 100 KiB are skipped
|
||||||
set viminfo=%100,'100,h,<1000,:100,s100
|
set viminfo=%100,'100,h,<1000,:100,s100
|
||||||
|
endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue