diff --git a/dotfiles/.bashrc b/dotfiles/.bashrc index b384c21..0b0bfb7 100644 --- a/dotfiles/.bashrc +++ b/dotfiles/.bashrc @@ -130,7 +130,7 @@ bind "set menu-complete-display-prefix on" DIR_LAB="/h/u3/c7/05/mokkar/.bash_it" DIR_HOME="/home/kevin/.bash_it" # Path to the bash it configuration -export BASH_IT="$DIR_HOME" +export BASH_IT="$DIR_LAB" # Lock and Load a custom theme file # location /.bash_it/themes/ diff --git a/dotfiles/.vimrc b/dotfiles/.vimrc index 36b66b5..974258d 100644 --- a/dotfiles/.vimrc +++ b/dotfiles/.vimrc @@ -11,14 +11,19 @@ " endtry set relativenumber +set background=dark syntax on set tabstop=4 set autoindent " 'h/u3/c7/05/mokkar/.vim/plugged' " '~/.vim/plugged' -" call plug#begin('h/u3/c7/05/mokkar/.vim/plugged') -" Plug 'https://github.com/whatyouhide/vim-gotham.git' -" call plug#end() -" -" colorscheme gotham +call plug#begin('h/u3/c7/05/mokkar/.vim/plugged') + +Plug 'vim-scripts/L9' +Plug 'vim-scripts/FuzzyFinder' +" Plug 'whatyouhide/vim-gotham' + +call plug#end() + +colorscheme gotham diff --git a/set-from-git.sh b/set-from-git.sh index 070be74..eaffdb2 100644 --- a/set-from-git.sh +++ b/set-from-git.sh @@ -1,8 +1,6 @@ files=".bash_aliases .bashrc .inputrc .vimrc" dir=~/linux-config/dotfiles -# mkdir $dir - for file in $files; do rm ~/$file ln -s $dir/$file ~/$file