aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustine Smithies <justine@smithies.me.uk>2026-03-04 19:03:50 +0000
committerJustine Smithies <justine@smithies.me.uk>2026-03-04 19:03:50 +0000
commitb277f77af94679af5ad6698e655e9423ed286f0e (patch)
treeb32f58ba951f4452a567066eaa2d578d9181b07b
parentad9374497617d5d37dab59b35c8d492ff70db28e (diff)
Deleted .vimrc and moved config to ~/.config/vim/ as per vim 9.2
-rw-r--r--.config/vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/vim/vimrc b/.config/vim/vimrc
index 97472ff..07b4bab 100644
--- a/.config/vim/vimrc
+++ b/.config/vim/vimrc
@@ -222,7 +222,7 @@ set tabline=%!SpawnBufferLine() " Assign the tabline
" Add UpdateVimPackages command using the internal package system of vim
function! UpdatePackages()
" Gather all top-level package directories from both start and opt
- let l:packages = globpath('~/.vim/pack/*/start/*', '', 0, 1) + globpath('~/.vim/pack/*/opt/*', '', 0, 1)
+ let l:packages = globpath('~/.config/vim/pack/*/start/*', '', 0, 1) + globpath('~/.config/vim/pack/*/opt/*', '', 0, 1)
" Open a new tab for output
tabnew | setlocal buftype=nofile | setlocal bufhidden=delete | setlocal noswapfile