restructure dotfile directories

This commit is contained in:
Jidbo 2019-12-11 22:16:18 +01:00
parent 8206bd31a6
commit 3f08f78a4f
No known key found for this signature in database
GPG key ID: 176CBC4DBB0A8965
34 changed files with 2610 additions and 32 deletions

View file

@ -1,30 +0,0 @@
#!/usr/bin/sh
# remove all current dotfiles
rm -f ~/.zshrc
rm -f ~/.vimrc
rm -rf ~/.vim
rm -f ~/.tmux.conf
# create symbolic links to dotfiles
ln -s ~/.dotfiles/.vimrc ~/.vimrc
ln -s ~/.dotfiles/.zshrc ~/.zshrc
ln -s ~/.dotfiles/.vim ~/.vim
ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf
# install vundle
if ! [ -d ~/.vim/bundle/Vundle.vim ]; then
echo '[INFO] Installing Vundle...'
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
else
echo '[INFO] Vundle is already installed.'
fi
# Install vundle Plugins
if commandExists vim; then
echo '[INFO] Installing vim plugins via Vundle...'
vim +PluginInstall +qall
else
echo '[INFO] Vim is not installed, could not install the plugins.'
fi

View file

@ -32,9 +32,9 @@ alias la='ls -la'
alias :q='exit'
# localcommands
if [ -f ~/.dotfiles/.localcommands ]
if [ -f ~/.dotfiles/localcommands ]
then
source ~/.dotfiles/.localcommands
source ~/.dotfiles/localcommands
fi
# Tmuxinator autocomplete

2591
vim/vim/autoload/plug.vim Normal file

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

1
vim/vim/bundle/ale Submodule

@ -0,0 +1 @@
Subproject commit 28c93ab1854ef41a46855401cc4addbaf7dfb9d4

@ -0,0 +1 @@
Subproject commit c718cefc51ccdaf7bd27c4c1ae2de55103434241

@ -0,0 +1 @@
Subproject commit 359a80e3a34aacbd5257713b6a88aa085337166f

@ -0,0 +1 @@
Subproject commit d21693897e844700204348a530e5f0124ecd1f3f

@ -0,0 +1 @@
Subproject commit 184fbb6ffea6dc69726b229a08153c9d08522386

@ -0,0 +1 @@
Subproject commit 1a99766b73783bafb08cfa07d7e29e5387c55189

@ -0,0 +1 @@
Subproject commit a40184536b3b93b6272585da9c36dca802d47a01

@ -0,0 +1 @@
Subproject commit b85165844240fe0b9121df487679a320e053abc7

@ -0,0 +1 @@
Subproject commit 141d9d32a9fb58fe474fcc89cd7221eb2dd57b3a

@ -0,0 +1 @@
Subproject commit 79b1f16a7adf38ed5e202e5317cc1eabc9399528

@ -0,0 +1 @@
Subproject commit 070cfc531a3bf6efdf18017ca1b22b426b971d8d

@ -0,0 +1 @@
Subproject commit 3ddca5da461ebfaa82104f82e3cbf19d1c326ade

@ -0,0 +1 @@
Subproject commit 35948af32203282ffd724f4ffac87af9c3efcf11

@ -0,0 +1 @@
Subproject commit 4e1a877f51a17a961b8c2a285ee80aebf05ccf42

1
vim/vim/bundle/vimtex Submodule

@ -0,0 +1 @@
Subproject commit be0e917d41769dbe8d4f94993b625548131fd058

@ -0,0 +1 @@
Subproject commit e914728083536102c81281a2b2d0b81eec1e6bfb

View file