diff --git a/.gitignore b/.gitignore index 1377554..7be4e0a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.swp +temp.sh diff --git a/dotfiles/.bashrc b/dotfiles/.bashrc index 0b0bfb7..b384c21 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_LAB" +export BASH_IT="$DIR_HOME" # Lock and Load a custom theme file # location /.bash_it/themes/ diff --git a/dotfiles/.gvimrc b/dotfiles/.gvimrc index 1059d3c..1c555d9 100644 --- a/dotfiles/.gvimrc +++ b/dotfiles/.gvimrc @@ -1 +1 @@ -set guifont=Monospace\ 14 +set guifont=Monospace\ 12 diff --git a/dotfiles/.vimrc b/dotfiles/.vimrc index 36df209..3e01352 100644 --- a/dotfiles/.vimrc +++ b/dotfiles/.vimrc @@ -1,10 +1,12 @@ set relativenumber set background=dark +set t_Co=256 syntax on set tabstop=4 set shiftwidth=4 set autoindent set mouse=c +set clipboard=unnamedplus " 'h/u3/c7/05/mokkar/.vim/plugged' " '~/.vim/plugged' @@ -13,6 +15,7 @@ call plug#begin('~/.vim/plugged') Plug 'vim-scripts/L9' Plug 'vim-scripts/FuzzyFinder' Plug 'whatyouhide/vim-gotham' +Plug 'nathanaelkane/vim-indent-guides' call plug#end() diff --git a/dotfiles/termConfig b/dotfiles/termConfig new file mode 100644 index 0000000..8d7f6e7 --- /dev/null +++ b/dotfiles/termConfig @@ -0,0 +1,23 @@ +[global_config] + title_font = Noto Sans 10 + title_transmit_bg_color = "#3d3d3d" +[keybindings] + close_term = w +[layouts] + [[default]] + [[[child1]]] + parent = window0 + type = Terminal + [[[window0]]] + parent = "" + type = Window +[plugins] +[profiles] + [[default]] + background_image = None + copy_on_selection = True + cursor_color = "#b9b9b9" + font = Noto Mono 11 + foreground_color = "#174af0" + palette = "#1f1f1f:#f81118:#2dc55e:#ecba0f:#2a84d2:#4e5ab7:#1081d6:#d6dbe5:#d6dbe5:#de352e:#1dd361:#f3bd09:#1081d6:#5350b9:#0f7ddb:#ffffff" + use_system_font = False diff --git a/set-from-git.sh b/set-from-git.sh index 6c892cf..2af800b 100644 --- a/set-from-git.sh +++ b/set-from-git.sh @@ -1,7 +1,13 @@ +# home files=".bash_aliases .bashrc .inputrc .vimrc .gvimrc" -dir=~/linux-config/dotfiles +dotDir=~/linux-config/dotfiles for file in $files; do rm ~/$file - ln -s $dir/$file ~/$file + ln -s $dotDir/$file ~/$file done + +# terminator +termDir=~/.config/terminator/ +rm $termDir/config +ln -s $dotDir/termConfig $termDir/config