first blush
This commit is contained in:
parent
e0bf72c3c7
commit
93089c5903
@ -15,9 +15,15 @@ URxvt*scrollWithBuffer: true
|
||||
URxvt*scrollTtyKeypress: true
|
||||
URxvt*secondaryWheel: true
|
||||
|
||||
# Dynamic colors
|
||||
urxvt*dynamicColors: on
|
||||
|
||||
URxvt.urgentOnBell: true
|
||||
|
||||
URxvt.perl-ext: default,clipboard,url-select,keyboard-select
|
||||
URxvt*perl-ext-common: urxvt-colors
|
||||
URxvt*perl-lib: .Xresources.d
|
||||
URxvt*keysym.F5: perl:urxvt-colors:
|
||||
! tabbed
|
||||
! URxvt.tabbed.tabbar-fg: 2
|
||||
! URxvt.tabbed.tabbar-bg: 0
|
||||
|
||||
5
.Xresources.d/urxvt-colors
Executable file
5
.Xresources.d/urxvt-colors
Executable file
@ -0,0 +1,5 @@
|
||||
sub on_user_command {
|
||||
my ($self, $cmd) = @_;
|
||||
my $output = `dynamic-colors cycle`;
|
||||
$self->cmd_parse($output);
|
||||
}
|
||||
14
.vimrc
14
.vimrc
@ -17,6 +17,9 @@ Plugin 'tpope/vim-rails'
|
||||
Plugin 'tpope/vim-rake'
|
||||
Plugin 'tpope/vim-bundler'
|
||||
|
||||
" Productivity
|
||||
Plugin 'farseer90718/vim-taskwarrior'
|
||||
|
||||
Plugin 'L9'
|
||||
" Plugin 'FuzzyFinder'
|
||||
" Plugin 'AutoComplPop'
|
||||
@ -46,20 +49,19 @@ Plugin 'mattn/calendar-vim'
|
||||
Plugin 'vim-scripts/vimwiki'
|
||||
" Plugin 'mhinz/vim-startify'
|
||||
Plugin 'ngmy/vim-rubocop'
|
||||
"Plugin 'bling/vim-airline'
|
||||
Plugin 'tpope/vim-surround'
|
||||
Plugin 'kien/ctrlp.vim'
|
||||
Plugin 'whatyouhide/vim-gotham'
|
||||
Plugin 'Shougo/unite.vim'
|
||||
Plugin 'ervandew/supertab'
|
||||
Plugin 'mileszs/ack.vim'
|
||||
Plugin 'godlygeek/tabular'
|
||||
Plugin 'nathanaelkane/vim-indent-guides'
|
||||
Plugin 'farseer90718/vim-taskwarrior'
|
||||
|
||||
Plugin 'scrooloose/syntastic'
|
||||
Plugin 'syngan/vim-vimlint'
|
||||
Plugin 'ynkdir/vim-vimlparser'
|
||||
" Plugin 'syngan/vim-vimlint'
|
||||
" Plugin 'ynkdir/vim-vimlparser'
|
||||
" Plugin 'tpope/vim-dispatch'
|
||||
" Plugin 'whatyouhide/vim-gotham'
|
||||
Plugin 'altercation/vim-colors-solarized'
|
||||
Plugin 'airblade/vim-gitgutter'
|
||||
Plugin 'szw/vim-maximizer'
|
||||
@ -211,7 +213,7 @@ set ruler " Ruler on
|
||||
|
||||
set nocp incsearch
|
||||
" Search
|
||||
set ignorecase " Ignore case of searches
|
||||
" set ignorecase " Ignore case of searches
|
||||
|
||||
set cinoptions=:0,p0,t0
|
||||
set cinwords=if,else,while,do,for,switch,case,begin
|
||||
|
||||
6
.zshrc
6
.zshrc
@ -204,6 +204,10 @@ alias wiki="cd ~/wiki && vim index.md"
|
||||
alias gwiki="cd ~/wiki && gvim index.md"
|
||||
|
||||
alias gulp-watch="./node_modules/.bin/gulp watch; notify-send -i error 'Gulp has crashed'"
|
||||
alias weather="curl wttr.in/Moscow"
|
||||
alias git-commit-random="git commit -em '$(curl -s http://whatthecommit.com/index.txt )'"
|
||||
|
||||
export PATH="$HOME/.dynamic-colors/bin:$PATH"
|
||||
|
||||
#export PATH="$HOME/Soft/vagrant/bin:$PATH"
|
||||
|
||||
@ -213,3 +217,5 @@ export CLOUDSDK_PYTHON=/usr/bin/python2
|
||||
source '/home/kressh/Soft/google-cloud-sdk/path.zsh.inc'
|
||||
# The next line enables bash completion for gcloud.
|
||||
source '/home/kressh/Soft/google-cloud-sdk/completion.zsh.inc'
|
||||
|
||||
source $HOME/.dynamic-colors/completions/dynamic-colors.zsh
|
||||
|
||||
Loading…
Reference in New Issue
Block a user