-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
1,944 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Main | ||
set -g prefix ^a | ||
set -g status-keys vi | ||
setw -g mode-keys vi | ||
set -g default-terminal "rxvt-unicode-256color" | ||
|
||
# Window Panes | ||
set -g base-index 1 | ||
set -g pane-base-index 1 | ||
|
||
#------------------- | ||
# STATUS | ||
#------------------ | ||
set -g message-attr bold | ||
set -g message-fg black | ||
set -g message-bg yellow | ||
|
||
set -g status-justify right | ||
set -g status-bg black | ||
set -g status-fg white | ||
set -g status-interval 5 | ||
set -g status-utf8 on | ||
|
||
setw -g window-status-fg magenta | ||
setw -g window-status-attr none | ||
setw -g window-status-current-fg white | ||
setw -g window-status-current-bg black | ||
setw -g window-status-current-attr bold | ||
|
||
setw -g window-status-activity-attr none | ||
|
||
setw -g window-status-format '#[fg=white,bg=blue] #I #[fg=black,bg=cyan] #W ' | ||
setw -g window-status-current-format '#[fg=blue,bg=white] #I #[fg=black,bg=yellow] #W ' | ||
|
||
set -g status-left '#[fg=blue,bold] #S#[default,fg=white][#[fg=yellow]#I:#P#[fg=white]]#[fg=black,bold]@#[fg=red]#H #[fg=black,bold]» #T#[default]' | ||
set -g status-left-length 80 | ||
set -g status-left-fg black | ||
|
||
set -g status-right '' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
let g:netrw_dirhistmax =10 | ||
let g:netrw_dirhist_cnt =1 | ||
let g:netrw_dirhist_1='/home/bowo/sporra' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
" Author: Kim Silkebækken <[email protected]> | ||
" Source repository: https://github.com/Lokaltog/vim-distinguished | ||
|
||
" Initialization {{{ | ||
set background=dark | ||
|
||
hi clear | ||
if exists('syntax_on') | ||
syntax reset | ||
endif | ||
|
||
let g:colors_name = 'distinguished' | ||
|
||
if ! has('gui_running') | ||
if &t_Co != 256 | ||
echoe 'The ' . g:colors_name . ' color scheme requires gvim or a 256-color terminal' | ||
|
||
finish | ||
endif | ||
endif | ||
" }}} | ||
" Color dictionary parser {{{ | ||
function! s:ColorDictParser(color_dict) | ||
for [group, group_colors] in items(a:color_dict) | ||
exec 'hi ' . group | ||
\ . ' ctermfg=' . (group_colors[0] == '' ? 'NONE' : group_colors[0]) | ||
\ . ' ctermbg=' . (group_colors[1] == '' ? 'NONE' : group_colors[1]) | ||
\ . ' cterm=' . (group_colors[2] == '' ? 'NONE' : group_colors[2]) | ||
\ | ||
\ . ' guifg=' . (group_colors[3] == '' ? 'NONE' : '#' . group_colors[3]) | ||
\ . ' guibg=' . (group_colors[4] == '' ? 'NONE' : '#' . group_colors[4]) | ||
\ . ' gui=' . (group_colors[5] == '' ? 'NONE' : group_colors[5]) | ||
endfor | ||
endfunction | ||
" }}} | ||
|
||
" | Highlight group | CTFG | CTBG | CTAttributes | || | GUIFG | GUIBG | GUIAttributes | | ||
" |--------------------------------|-------|-------|-----------------| || |---------|----------|-----------------| | ||
call s:ColorDictParser({ | ||
\ 'Normal' : [ 231, 16, '', 'ffffff', '000000', ''] | ||
\ , 'Visual' : [ 240, 253, '', '585858', 'dadada', ''] | ||
\ | ||
\ , 'Cursor' : [ '', '', '', 'ffffff', 'dd4010', ''] | ||
\ , 'lCursor' : [ '', '', '', 'ffffff', '89b6e2', ''] | ||
\ | ||
\ , 'CursorLine' : [ '', 236, '', '', '3a3a3a', ''] | ||
\ , 'CursorLineNr' : [ 231, 240, '', 'ffffff', '585858', ''] | ||
\ , 'CursorColumn' : [ 231, 237, '', 'ffffff', '3a3a3a', ''] | ||
\ | ||
\ , 'Folded' : [ 249, 234, '', 'b2b2b2', '1c1c1c', ''] | ||
\ , 'FoldColumn' : [ 243, 234, '', '767676', '1c1c1c', ''] | ||
\ , 'SignColumn' : [ 231, 233, 'bold', 'ffffff', '121212', 'bold'] | ||
\ , 'ColorColumn' : [ '', 233, '', '', '262626', ''] | ||
\ | ||
\ , 'StatusLine' : [ 231, 236, 'bold', 'ffffff', '303030', 'bold'] | ||
\ , 'StatusLineNC' : [ 244, 232, '', '808080', '080808', ''] | ||
\ | ||
\ , 'LineNr' : [ 243, 235, '', '767676', '262626', ''] | ||
\ , 'VertSplit' : [ 240, '', '', '585858', '1c1c1c', ''] | ||
\ | ||
\ , 'WildMenu' : [ 234, 231, '', '1c1c1c', 'ffffff', ''] | ||
\ , 'Directory' : [ 143, '', 'bold', 'afaf5f', '', 'bold'] | ||
\ , 'Underlined' : [ 130, '', '', 'af5f00', '', ''] | ||
\ | ||
\ , 'Question' : [ 74, '', 'bold', '5fafd7', '', 'bold'] | ||
\ , 'MoreMsg' : [ 214, '', 'bold', 'ffaf00', '', 'bold'] | ||
\ , 'WarningMsg' : [ 202, '', 'bold', 'ff5f00', '', 'bold'] | ||
\ , 'ErrorMsg' : [ 196, '', 'bold', 'ff0000', '', 'bold'] | ||
\ | ||
\ , 'Comment' : [ 243, 233, '', '767676', '121212', ''] | ||
\ , 'vimCommentTitleLeader' : [ 250, 233, '', 'bcbcbc', '121212', ''] | ||
\ , 'vimCommentTitle' : [ 250, 233, '', 'bcbcbc', '121212', ''] | ||
\ , 'vimCommentString' : [ 245, 233, '', '8a8a8a', '121212', ''] | ||
\ | ||
\ , 'TabLine' : [ 231, 238, '', 'ffffff', '444444', ''] | ||
\ , 'TabLineSel' : [ 255, '', 'bold', 'eeeeee', '', 'bold'] | ||
\ , 'TabLineFill' : [ 240, 238, '', '585858', '444444', ''] | ||
\ , 'TabLineNumber' : [ 160, 238, 'bold', 'd70000', '444444', 'bold'] | ||
\ , 'TabLineClose' : [ 245, 238, 'bold', '8a8a8a', '444444', 'bold'] | ||
\ | ||
\ , 'SpellCap' : [ 231, 31, 'bold', 'ffffff', '0087af', 'bold'] | ||
\ | ||
\ , 'SpecialKey' : [ 239, '', '', '4e4e4e', '', ''] | ||
\ , 'NonText' : [ 88, '', '', '870000', '', ''] | ||
\ , 'MatchParen' : [ 231, 25, 'bold', 'ffffff', '005faf', 'bold'] | ||
\ | ||
\ , 'Constant' : [ 137, '', 'bold', 'af875f', '', 'bold'] | ||
\ , 'Special' : [ 150, '', '', 'afd787', '', ''] | ||
\ , 'Identifier' : [ 66, '', 'bold', '5f8787', '', 'bold'] | ||
\ , 'Statement' : [ 186, '', 'bold', 'd7d787', '', 'bold'] | ||
\ , 'PreProc' : [ 247, '', '', '9e9e9e', '', ''] | ||
\ , 'Type' : [ 67, '', 'bold', '5f87af', '', 'bold'] | ||
\ , 'String' : [ 143, '', '', 'afaf5f', '', ''] | ||
\ , 'Number' : [ 173, '', '', 'd7875f', '', ''] | ||
\ , 'Define' : [ 173, '', '', 'd7875f', '', ''] | ||
\ , 'Error' : [ 208, 124, '', 'ff8700', 'af0000', ''] | ||
\ , 'Function' : [ 179, '', '', 'd7af5f', '', ''] | ||
\ , 'Include' : [ 173, '', '', 'd7875f', '', ''] | ||
\ , 'PreCondit' : [ 173, '', '', 'd7875f', '', ''] | ||
\ , 'Keyword' : [ 173, '', '', 'd7875f', '', ''] | ||
\ , 'Search' : [ 231, 131, '', '000000', 'ffff5f', 'underline,bold'] | ||
\ , 'Title' : [ 231, '', '', 'ffffff', '', ''] | ||
\ , 'Delimiter' : [ 246, '', '', '949494', '', ''] | ||
\ , 'StorageClass' : [ 187, '', '', 'd7d7af', '', ''] | ||
\ , 'Operator' : [ 180, '', '', 'd7af87', '', ''] | ||
\ | ||
\ , 'TODO' : [ 228, 94, 'bold', 'ffff87', '875f00', 'bold'] | ||
\ | ||
\ , 'SyntasticWarning' : [ 220, 94, '', 'ffff87', '875f00', 'bold'] | ||
\ , 'SyntasticError' : [ 202, 52, '', 'ffff87', '875f00', 'bold'] | ||
\ | ||
\ , 'Pmenu' : [ 248, 240, '', 'a8a8a8', '585858', ''] | ||
\ , 'PmenuSel' : [ 253, 245, '', 'dadada', '8a8a8a', ''] | ||
\ , 'PmenuSbar' : [ 253, 248, '', 'dadada', 'a8a8a8', ''] | ||
\ | ||
\ , 'phpEOL' : [ 245, '', '', 'dadada', '', ''] | ||
\ , 'phpStringDelim' : [ 94, '', '', '875f00', '', ''] | ||
\ , 'phpDelimiter' : [ 160, '', '', 'd70000', '', ''] | ||
\ , 'phpFunctions' : [ 221, '', 'bold', 'ffd75f', '', 'bold'] | ||
\ , 'phpBoolean' : [ 172, '', 'bold', 'd78700', '', 'bold'] | ||
\ , 'phpOperator' : [ 215, '', '', 'ffaf5f', '', ''] | ||
\ , 'phpMemberSelector' : [ 138, '', 'bold', 'af8787', '', 'bold'] | ||
\ , 'phpParent' : [ 227, '', '', 'ffff5f', '', ''] | ||
\ | ||
\ , 'PHPClassTag' : [ 253, '', '', 'dadada', '', ''] | ||
\ , 'PHPInterfaceTag' : [ 253, '', '', 'dadada', '', ''] | ||
\ , 'PHPFunctionTag' : [ 222, '', 'bold', 'ffd787', '', 'bold'] | ||
\ | ||
\ , 'pythonDocString' : [ 240, 233, '', '585858', '121212', ''] | ||
\ , 'pythonDocStringTitle' : [ 245, 233, '', 'dadada', '121212', ''] | ||
\ , 'pythonRun' : [ 65, '', '', '5f875f', '', ''] | ||
\ , 'pythonBuiltinObj' : [ 67, '', 'bold', '5f87af', '', 'bold'] | ||
\ , 'pythonSelf' : [ 250, '', 'bold', 'bcbcbc', '', 'bold'] | ||
\ , 'pythonFunction' : [ 179, '', 'bold', 'd7af5f', '', 'bold'] | ||
\ , 'pythonClass' : [ 221, '', 'bold', 'ffd75f', '', 'bold'] | ||
\ , 'pythonExClass' : [ 130, '', '', 'af5f00', '', ''] | ||
\ , 'pythonException' : [ 130, '', 'bold', 'af5f00', '', 'bold'] | ||
\ , 'pythonOperator' : [ 186, '', '', 'd7d787', '', ''] | ||
\ , 'pythonPreCondit' : [ 152, '', 'bold', 'afd7d7', '', 'bold'] | ||
\ , 'pythonDottedName' : [ 166, '', '', 'd75f00', '', ''] | ||
\ , 'pythonDecorator' : [ 124, '', 'bold', 'af0000', '', 'bold'] | ||
\ | ||
\ , 'PythonInterfaceTag' : [ 109, '', '', '87afaf', '', ''] | ||
\ , 'PythonClassTag' : [ 221, '', '', 'ffd75f', '', ''] | ||
\ , 'PythonFunctionTag' : [ 109, '', '', '87afaf', '', ''] | ||
\ , 'PythonVariableTag' : [ 253, '', '', 'dadada', '', ''] | ||
\ , 'PythonMemberTag' : [ 145, '', '', 'afafaf', '', ''] | ||
\ | ||
\ , 'CTagsImport' : [ 109, '', '', '87afaf', '', ''] | ||
\ , 'CTagsClass' : [ 221, '', '', 'ffd75f', '', ''] | ||
\ , 'CTagsFunction' : [ 109, '', '', '87afaf', '', ''] | ||
\ , 'CTagsGlobalVariable' : [ 253, '', '', 'dadada', '', ''] | ||
\ , 'CTagsMember' : [ 145, '', '', 'afafaf', '', ''] | ||
\ | ||
\ , 'xmlTag' : [ 149, '', 'bold', 'afd75f', '', 'bold'] | ||
\ , 'xmlTagName' : [ 250, '', '', 'bcbcbc', '', ''] | ||
\ , 'xmlEndTag' : [ 209, '', 'bold', 'ff875f', '', 'bold'] | ||
\ | ||
\ , 'cssImportant' : [ 166, '', 'bold', 'd75f00', '', 'bold'] | ||
\ | ||
\ , 'DiffAdd' : [ 112, 22, '', '87d700', '005f00', ''] | ||
\ , 'DiffChange' : [ 220, 94, '', 'ffd700', '875f00', ''] | ||
\ , 'DiffDelete' : [ 160, '', '', 'd70000', '', ''] | ||
\ , 'DiffText' : [ 220, 94, 'reverse,bold', 'ffd700', '875f00', 'reverse,bold'] | ||
\ | ||
\ , 'diffLine' : [ 68, '', 'bold', '5f87d7', '', 'bold'] | ||
\ , 'diffFile' : [ 242, '', '', '6c6c6c', '', ''] | ||
\ , 'diffNewFile' : [ 242, '', '', '6c6c6c', '', ''] | ||
\ }) | ||
|
||
hi link htmlTag xmlTag | ||
hi link htmlTagName xmlTagName | ||
hi link htmlEndTag xmlEndTag | ||
|
||
hi link phpCommentTitle vimCommentTitle | ||
hi link phpDocTags vimCommentString | ||
hi link phpDocParam vimCommentTitle | ||
|
||
hi link diffAdded DiffAdd | ||
hi link diffChanged DiffChange | ||
hi link diffRemoved DiffDelete |
Oops, something went wrong.