Browse Source

Added Terminator config as well as to script.

red-hat-laptop
Kevin Mok 7 years ago
parent
commit
bcb9c05747
  1. 1
      .gitignore
  2. 2
      dotfiles/.bashrc
  3. 2
      dotfiles/.gvimrc
  4. 3
      dotfiles/.vimrc
  5. 23
      dotfiles/termConfig
  6. 10
      set-from-git.sh

1
.gitignore

@ -1 +1,2 @@
*.swp
temp.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_LAB"
export BASH_IT="$DIR_HOME"
# Lock and Load a custom theme file
# location /.bash_it/themes/

2
dotfiles/.gvimrc

@ -1 +1 @@
set guifont=Monospace\ 14
set guifont=Monospace\ 12

3
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()

23
dotfiles/termConfig

@ -0,0 +1,23 @@
[global_config]
title_font = Noto Sans 10
title_transmit_bg_color = "#3d3d3d"
[keybindings]
close_term = <Primary>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

10
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
Loading…
Cancel
Save