DEVenv/linux_install.sh

23 lines
545 B
Bash
Raw Normal View History

2020-07-22 01:02:05 +00:00
if [[ ! -f "${HOME}/.vim/autoload/plug.vim" ]]; then
wget --directory-prefix=../.vim/autoload https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
fi
2019-02-05 05:43:53 +00:00
2020-11-05 03:41:47 +00:00
#
# Dependencies
#
sudo apt install exuberant-ctags neovim clang-format ripgrep
2019-02-05 05:43:53 +00:00
2020-11-05 03:41:47 +00:00
#
# NVim
#
cp --force Installer/_vimrc ~/.vimrc
cp --force Installer/unix_nvim_init.vim ~/.config/nvim/init.vim
#
# Ctags
#
mkdir --parents Bin
rm --force Bin/ctags_cpp.sh
echo ctags --c++-kinds=+p --fields=+iaS --extra=+q --language-force=C++ \$\@ >> Bin/ctags_cpp.sh
chmod +x Bin/ctags_cpp.sh