Browse Source

Got vim-plug to work.

red-hat-laptop
Kevin Mok 7 years ago
parent
commit
6b6681aa4f
  1. 2
      dotfiles/.bashrc
  2. 15
      dotfiles/.vimrc
  3. 2
      set-from-git.sh

2
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/

15
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

2
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

Loading…
Cancel
Save