Browse Source

Modified some files to try to work with lab comps. (2)

red-hat-laptop
Kevin Mok 7 years ago
parent
commit
6ff92ce633
  1. 7
      .bashrc
  2. 2
      .gitignore
  3. 34
      .vimrc
  4. 2
      symlink.sh

7
.bashrc

@ -93,8 +93,7 @@ fi
# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
alias l='ls -a'
# Add an "alert" alias for long running commands. Use like so:
# sleep 10; alert
@ -128,8 +127,10 @@ bind "TAB:menu-complete"
bind "set show-all-if-ambiguous on"
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="/home/kevin/.bash_it"
export BASH_IT="$DIR_LAB"
# Lock and Load a custom theme file
# location /.bash_it/themes/

2
.gitignore

@ -1 +1 @@
symlink.sh
rm-symlink.sh

34
.vimrc

@ -1,22 +1,24 @@
set runtimepath+=~/.vim_runtime
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
" set runtimepath+=~/.vim_runtime
"
" 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
set relativenumber
syntax on
set tabstop=8
set autoindent
call plug#begin('~/.vim/plugged')
Plug 'whatyouhide/vim-gotham'
call plug#end()
colorscheme gotham
" '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

2
symlink.sh

@ -1,5 +1,5 @@
files=".bash_aliases .bashrc .inputrc .vimrc"
dir=~/dotfiles
dir=~/my-dotfiles
mkdir $dir

Loading…
Cancel
Save