Compare commits

...

2 Commits

Author SHA1 Message Date
vladislav doster
f853f1884a
maint(init.vim): use $XDG_CONFIG_HOME (#1463)
- use `${XDG_CONFIG_HOME:-$HOME/.config}`
2025-04-11 07:08:38 +00:00
Luke Smith
2e3790a695
fix #1464 2025-04-02 18:57:24 +02:00

View File

@ -23,7 +23,6 @@ call plug#end()
set title
set bg=light
set go=a
set mouse=a
set nohlsearch
set clipboard+=unnamedplus
@ -153,4 +152,4 @@ nnoremap <leader>h :call ToggleHiddenAll()<CR>
" Here leader is ";".
" So ":vs ;cfz" will expand into ":vs /home/<user>/.config/zsh/.zshrc"
" if typed fast without the timeout.
silent! source ~/.config/nvim/shortcuts.vim
silent! source ${XDG_CONFIG_HOME:-$HOME/.config}/nvim/shortcuts.vim