Updated README to include desktop screenshot and urxvt/pywal sources.
This commit is contained in:
8
dotfiles/Xresources
Normal file
8
dotfiles/Xresources
Normal file
@@ -0,0 +1,8 @@
|
||||
URxvt.font: xft:hack:size=11
|
||||
|
||||
URxvt*inheritPixmap: true
|
||||
URxvt*transparent: true
|
||||
! URxvt*shading: 0 to 99 darkens, 101 to 200 lightens
|
||||
URxvt*shading: 20
|
||||
|
||||
URxvt.scrollBar: false
|
||||
@@ -124,11 +124,13 @@ fi
|
||||
# Path to the bash it configuration
|
||||
export BASH_IT="$DIR_BASH_IT"
|
||||
|
||||
# store current working dir after every command so can launch new
|
||||
# terminals from same dir (for i3)
|
||||
PROMPT_COMMAND='pwd > "${HOME}/.cwd"'
|
||||
[[ -f "${HOME}/.cwd" ]] && cd "$(< ${HOME}/.cwd)"
|
||||
|
||||
# Lock and Load a custom theme file
|
||||
# location /.bash_it/themes/
|
||||
PROMPT_COMMAND='pwd > "${HOME}/.cwd"'
|
||||
[[ -f "${HOME}/.cwd" ]] && cd "$(< ${HOME}/.cwd)"
|
||||
export BASH_IT_THEME='nwinkler'
|
||||
|
||||
# (Advanced): Change this to the name of your remote repo if you
|
||||
@@ -189,6 +191,8 @@ export VISUAL='vim'
|
||||
# Both PC/Laptop {{{
|
||||
if [ "$(whoami)" == "kevin" ]; then
|
||||
xset r rate 200 90
|
||||
export PATH="${PATH}:${HOME}/.local/bin/"
|
||||
(cat ~/.cache/wal/sequences &)
|
||||
fi
|
||||
# NZXT
|
||||
if [ "$(hostname)" == "NZXT" ];
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# Get directory variables from script.
|
||||
. ../dirs.sh
|
||||
# List of dotfiles I want to link to system.
|
||||
dotfiles="bashrc gitconfig inputrc vimrc"
|
||||
dotfiles="bashrc gitconfig inputrc vimrc Xresources"
|
||||
# cd $dot_dir
|
||||
for dotfile in $dotfiles; do
|
||||
# Remove system dotfile.
|
||||
|
||||
@@ -8,7 +8,7 @@ syntax on
|
||||
set tabstop=4
|
||||
set tw=80
|
||||
set linebreak
|
||||
set colorcolumn=80
|
||||
" set colorcolumn=80
|
||||
set shiftwidth=4
|
||||
set autoindent
|
||||
set mouse=c
|
||||
@@ -17,8 +17,8 @@ set foldmethod=marker
|
||||
set linespace=5
|
||||
" set listchars=tab:\|\
|
||||
" set list
|
||||
set cursorcolumn
|
||||
set cursorline
|
||||
" set cursorcolumn
|
||||
" set cursorline
|
||||
set timeoutlen=300
|
||||
set hlsearch
|
||||
" }}} set x=y "
|
||||
@@ -57,6 +57,7 @@ Plug 'easymotion/vim-easymotion'
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'vim-airline/vim-airline-themes'
|
||||
Plug 'dkarter/bullets.vim'
|
||||
Plug 'dylanaraps/wal.vim'
|
||||
" }}} vim-plug "
|
||||
|
||||
" YCM/UltiSnips {{{ "
|
||||
@@ -71,7 +72,8 @@ let g:UltiSnipsJumpBackwardTrigger = "<C-tab>"
|
||||
" }}} YCM/UltiSnips "
|
||||
|
||||
call plug#end()
|
||||
colorscheme gotham256
|
||||
" colorscheme gotham256
|
||||
colorscheme wal
|
||||
|
||||
" Mappings {{{ "
|
||||
map <F3> :wa<CR>
|
||||
|
||||
Reference in New Issue
Block a user