fix: the one true vim
This commit is contained in:
parent
9f7579a55e
commit
7e009a8b50
4 changed files with 21 additions and 6 deletions
|
@ -42,4 +42,5 @@ container() {
|
||||||
ash
|
ash
|
||||||
}
|
}
|
||||||
|
|
||||||
alias q="exit"
|
alias q="exit"
|
||||||
|
alias vim="nvim"
|
|
@ -4,11 +4,11 @@ describe="Install vim and it's stuff"
|
||||||
scripts="@distro @self"
|
scripts="@distro @self"
|
||||||
|
|
||||||
apply() {
|
apply() {
|
||||||
[ -e "$HOME/.vimrc" ] || ln files/.vimrc $HOME/.vimrc
|
[ -e "$HOME/.nvimrc" ] || ln files/.nvimrc $HOME/.nvimrc
|
||||||
[ -e "$HOME/.ideavimrc" ] || ln files/.ideavimrc $HOME/.ideavimrc
|
[ -e "$HOME/.ideavimrc" ] || ln files/.ideavimrc $HOME/.ideavimrc
|
||||||
}
|
}
|
||||||
|
|
||||||
undo() {
|
undo() {
|
||||||
unlink $HOME/.vimrc
|
unlink $HOME/.nvimrc
|
||||||
unlink $HOME/.ideavimrc
|
unlink $HOME/.ideavimrc
|
||||||
}
|
}
|
17
crates/20-vim/files/.nvimrc
Normal file
17
crates/20-vim/files/.nvimrc
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
" vim preferences
|
||||||
|
set number
|
||||||
|
set relativenumber
|
||||||
|
syntax on
|
||||||
|
|
||||||
|
" ensure vim-plug
|
||||||
|
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim'
|
||||||
|
if empty(glob(data_dir . '/autoload/plug.vim'))
|
||||||
|
silent execute '!curl -fLo '.data_dir.'/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
|
||||||
|
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
||||||
|
endif
|
||||||
|
|
||||||
|
call plug#begin()
|
||||||
|
|
||||||
|
Plug 'ThePrimeagen/vim-be-good'
|
||||||
|
|
||||||
|
call plug#end()
|
|
@ -1,3 +0,0 @@
|
||||||
set number
|
|
||||||
set relativenumber
|
|
||||||
syntax on
|
|
Loading…
Reference in a new issue