feat(install): share vim with nvim

This commit is contained in:
ayo 2026-06-24 10:20:14 +02:00
parent d63123ec6d
commit 93abb46226
2 changed files with 4 additions and 2 deletions

2
.vimrc
View file

@ -112,8 +112,6 @@ filetype plugin indent on " required
set nocompatible " be iMproved, required set nocompatible " be iMproved, required
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin behave mswin
set diffexpr=MyDiff() set diffexpr=MyDiff()

View file

@ -2,3 +2,7 @@ ln -rsf ./.vimrc ~/
ln -rsf ./.mailcap ~/ ln -rsf ./.mailcap ~/
ln -rsf ./.muttrc ~/ ln -rsf ./.muttrc ~/
ln -rsf ./.tmux.conf ~/ ln -rsf ./.tmux.conf ~/
# share vim config with neovim
mkdir -p ~/.config/nvim
ln -rsf ./.vimrc ~/.config/nvim/init.vim