Store vimrc and setup vundle
This commit is contained in:
parent
63b5b7a323
commit
c709390cc3
3 changed files with 29 additions and 3 deletions
4
Makefile
4
Makefile
|
@ -18,8 +18,8 @@ config: yaourt
|
|||
ln -sfP $(DOTFILES)/config/terminator.conf ~/.config/terminator/config
|
||||
sudo ln -sfP $(DOTFILES)/config/libinput-gestures.conf /etc/libinput-gestures.conf
|
||||
git config --global core.excludesfile ~/.dotfiles/config/gitignore_global
|
||||
git clone https://github.com/amix/vimrc.git ~/.vim_runtime
|
||||
sh ~/.vim_runtime/install_awesome_vimrc.sh
|
||||
git clone https://github.com/amix/vimrc.git ~/.vim_runtime || cd ~/.vim_runtime && git pull
|
||||
ln -sfP $(DOTFILES)/config/vimrc ~/.vimrc
|
||||
|
||||
gnome: yaourt
|
||||
rm -rf ~/Templates/*
|
||||
|
|
27
config/vimrc
Normal file
27
config/vimrc
Normal file
|
@ -0,0 +1,27 @@
|
|||
set runtimepath+=~/.vim_runtime
|
||||
set rtp+=/usr/share/vim/vimfiles/autoload/vundle.vim
|
||||
|
||||
source ~/.vim_runtime/vimrcs/basic.vim
|
||||
source ~/.vim_runtime/vimrcs/filetypes.vim
|
||||
source ~/.vim_runtime/vimrcs/plugins_config.vim
|
||||
source ~/.vim_runtime/vimrcs/extended.vim
|
||||
|
||||
try
|
||||
source ~/.vim_runtime/my_configs.vim
|
||||
catch
|
||||
endtry
|
||||
|
||||
cmap w!! w !sudo tee >/dev/null %
|
||||
:set mouse=a
|
||||
|
||||
call vundle#begin()
|
||||
" alternatively, pass a path where Vundle should install plugins
|
||||
"call vundle#begin('~/some/path/here')
|
||||
|
||||
" let Vundle manage Vundle, required
|
||||
Plugin 'VundleVim/Vundle.vim'
|
||||
|
||||
Plugin 'rykka/clickable-things'
|
||||
|
||||
call vundle#end() " required
|
||||
filetype plugin indent on
|
|
@ -30,7 +30,6 @@ gnome-shell-extension-status-menu-buttons
|
|||
gnome-shell-mousewheel-zoom
|
||||
google-earth
|
||||
gparted
|
||||
gvim
|
||||
handbrake
|
||||
hexchat
|
||||
hipchat
|
||||
|
|
Loading…
Reference in a new issue