Consolidate _src.posix into _home

This commit is contained in:
Lockszmith 2025-04-18 13:55:54 -04:00
parent bfdc7f4c1d
commit f16c2e61b3
279 changed files with 2134 additions and 2190 deletions

View file

@ -1 +0,0 @@
../_src.posix/dot_vimrc

View file

@ -0,0 +1,11 @@
if has('nvim')
" Neovim-specific settings
set runtimepath+=~/.config/nvim
lua require('_init')
else
" Vim-specific settings
set runtimepath+=~/.config/vim
source ~/.config/vim/_init
endif
" vim: set ft=vim sw=4 sts=4 et: