This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let g:colors_name = "16color" | |
hi Normal ctermfg=none | |
hi Boolean ctermfg=12 | |
hi Comment ctermfg=8 ctermbg=none cterm=none | |
hi Conditional ctermfg=10 | |
hi Constant ctermfg=11 | |
hi Cursor ctermbg=none | |
hi Debug ctermfg=13 | |
hi Define ctermfg=11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set t_Co=256 | |
set t_ut= | |
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
colorscheme zazen | |
set nu | |
set shiftwidth=2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Xft.antialias: true | |
Xft.rgba: none | |
Xft.hinting: true | |
Xft.autohint: true | |
Xft.hintstyle: hintslight | |
URxvt*termName: screen-256color | |
URxvt*scrollBar: false | |
URxvt*visualBell: false | |
URxvt*urgentOnBell: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" ============================================================================= | |
" File: zazen.vim | |
" Description: Vim color scheme file | |
" Maintainer: Zoltan Dezso | |
" ============================================================================= | |
" (fixed status line) | |
set background=dark | |
highlight clear | |
if exists("syntax_on") | |
syntax reset |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Xft.antialias: true | |
Xft.rgba: none | |
! | |
Xft.hinting: true | |
Xft.autohint: true | |
Xft.hintstyle: hintslight | |
URxvt*termName: screen-256color | |
URxvt*scrollBar: false | |
URxvt*visualBell: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
! macbook 2015/ubuntu 17.04 | |
! Exchange left Alt and left Win | |
remove mod1 = Alt_L | |
remove mod4 = Super_L | |
add mod1 = Super_L | |
add mod4 = Alt_L | |
! Exchange tilde and lesser/greater | |
keycode 94 = grave asciitilde dead_grave dead_tilde grave asciitilde | |
keycode 49 = less greater less greater bar brokenbar bar brokenbar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set t_Co=256 | |
set t_ut= | |
syntax on | |
filetype plugin indent on | |
colorscheme zazen | |
set nu | |
set shiftwidth=2 | |
set tabstop=2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
! for hidpi | |
Xft.dpi:120 | |
Xft.antialias: true | |
Xft.rgba: none | |
! | |
Xft.hinting: true | |
Xft.autohint: true | |
Xft.hintstyle: hintslight |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" ============================================================================= | |
" File: zazen.vim | |
" Description: Vim color scheme file | |
" Maintainer: Zoltan Dezso | |
" ============================================================================= | |
" (fixed status line) | |
set background=dark | |
highlight clear | |
if exists("syntax_on") | |
syntax reset |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in {0..255} ; do | |
printf "\x1b[48;5;%sm%3d\e[0m " "$i" "$i" | |
if (( i == 15 )) || (( i > 15 )) && (( (i-15) % 6 == 0 )); then | |
printf "\n"; | |
fi | |
done |