Added Terminator config as well as to script.
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +1,2 @@
|
|||||||
*.swp
|
*.swp
|
||||||
|
temp.sh
|
||||||
|
|||||||
@@ -130,7 +130,7 @@ bind "set menu-complete-display-prefix on"
|
|||||||
DIR_LAB="/h/u3/c7/05/mokkar/.bash_it"
|
DIR_LAB="/h/u3/c7/05/mokkar/.bash_it"
|
||||||
DIR_HOME="/home/kevin/.bash_it"
|
DIR_HOME="/home/kevin/.bash_it"
|
||||||
# Path to the bash it configuration
|
# Path to the bash it configuration
|
||||||
export BASH_IT="$DIR_LAB"
|
export BASH_IT="$DIR_HOME"
|
||||||
|
|
||||||
# Lock and Load a custom theme file
|
# Lock and Load a custom theme file
|
||||||
# location /.bash_it/themes/
|
# location /.bash_it/themes/
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
set guifont=Monospace\ 14
|
set guifont=Monospace\ 12
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
set relativenumber
|
set relativenumber
|
||||||
set background=dark
|
set background=dark
|
||||||
|
set t_Co=256
|
||||||
syntax on
|
syntax on
|
||||||
set tabstop=4
|
set tabstop=4
|
||||||
set shiftwidth=4
|
set shiftwidth=4
|
||||||
set autoindent
|
set autoindent
|
||||||
set mouse=c
|
set mouse=c
|
||||||
|
set clipboard=unnamedplus
|
||||||
|
|
||||||
" 'h/u3/c7/05/mokkar/.vim/plugged'
|
" 'h/u3/c7/05/mokkar/.vim/plugged'
|
||||||
" '~/.vim/plugged'
|
" '~/.vim/plugged'
|
||||||
@@ -13,6 +15,7 @@ call plug#begin('~/.vim/plugged')
|
|||||||
Plug 'vim-scripts/L9'
|
Plug 'vim-scripts/L9'
|
||||||
Plug 'vim-scripts/FuzzyFinder'
|
Plug 'vim-scripts/FuzzyFinder'
|
||||||
Plug 'whatyouhide/vim-gotham'
|
Plug 'whatyouhide/vim-gotham'
|
||||||
|
Plug 'nathanaelkane/vim-indent-guides'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
|||||||
23
dotfiles/termConfig
Normal file
23
dotfiles/termConfig
Normal file
@@ -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
|
||||||
@@ -1,7 +1,13 @@
|
|||||||
|
# home
|
||||||
files=".bash_aliases .bashrc .inputrc .vimrc .gvimrc"
|
files=".bash_aliases .bashrc .inputrc .vimrc .gvimrc"
|
||||||
dir=~/linux-config/dotfiles
|
dotDir=~/linux-config/dotfiles
|
||||||
|
|
||||||
for file in $files; do
|
for file in $files; do
|
||||||
rm ~/$file
|
rm ~/$file
|
||||||
ln -s $dir/$file ~/$file
|
ln -s $dotDir/$file ~/$file
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# terminator
|
||||||
|
termDir=~/.config/terminator/
|
||||||
|
rm $termDir/config
|
||||||
|
ln -s $dotDir/termConfig $termDir/config
|
||||||
|
|||||||
Reference in New Issue
Block a user