diff --git a/linux_install.sh b/linux_install.sh index 11ab682..a5734a1 100755 --- a/linux_install.sh +++ b/linux_install.sh @@ -2,40 +2,21 @@ if [[ ! -f "${HOME}/.vim/autoload/plug.vim" ]]; then wget --directory-prefix=../.vim/autoload https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim fi -if [[ ! -f "${HOME}/.vim/clang-format.py" ]]; then - wget --directory-prefix=${HOME}/.vim https://raw.githubusercontent.com/llvm-mirror/clang/master/tools/clang-format/clang-format.py -fi - -cp -f Installer/_vimrc ~/.vimrc -cp -f Installer/unix_nvim_init.vim ~/.config/nvim/init.vim - +# +# Dependencies +# sudo apt install exuberant-ctags neovim clang-format ripgrep -cat > ~/.tmux.conf < (hjkl) vim style keys -bind h select-pane -L -bind l select-pane -R -bind j select-pane -U -bind k select-pane -D - -bind -n M-Left resize-pane -L 10 -bind -n M-Right resize-pane -R 10 -bind -n M-Up resize-pane -U 10 -bind -n M-Down resize-pane -D 10 -EOF - -mkdir -p Bin -rm -rf Bin/ctags_cpp.sh -echo ctags --c++-kinds=+p --fields=+iaS --extra=+q --language-force=C++ $@ >> Bin/ctags_cpp.sh +# +# 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