Fix solarized colortheme in terminator and vim.

This commit is contained in:
2014-03-31 14:27:54 +02:00
parent 1da647ad11
commit 2aa48dcafe
2 changed files with 47 additions and 10 deletions

View File

@@ -1,26 +1,55 @@
[global_config] [global_config]
enabled_plugins = , enabled_plugins = ,
title_transmit_bg_color = "#d30102"
focus = mouse focus = mouse
[keybindings] [keybindings]
[profiles] [profiles]
[[default]] [[default]]
scrollbar_position = hidden
[[solarized-dark]]
palette = "#073642:#dc322f:#859900:#b58900:#268bd2:#d33682:#2aa198:#eee8d5:#002b36:#cb4b16:#586e75:#657b83:#839496:#6c71c4:#93a1a1:#fdf6e3" palette = "#073642:#dc322f:#859900:#b58900:#268bd2:#d33682:#2aa198:#eee8d5:#002b36:#cb4b16:#586e75:#657b83:#839496:#6c71c4:#93a1a1:#fdf6e3"
font = DejaVu Sans Mono 10 # cursor_color = "#eee8d5"
background_image = None foreground_color = "#eee8d5"
background_darkness = 0.9 background_color = "#002b36"
urgent_bell = True
use_system_font = False visible_bell = False
foreground_color = "#839496" scrollbar_position = hidden
icon_bell = False
show_titlebar = False show_titlebar = False
copy_on_selection = True copy_on_selection = True
background_color = "#002b36" scrollback_infinite = True
font = DejaVu Sans Mono 10
background_image = None
background_darkness = 0.5
urgent_bell = True
use_system_font = False
[[solarized-light]]
palette = "#073642:#dc322f:#859900:#b58900:#268bd2:#d33682:#2aa198:#eee8d5:#002b36:#cb4b16:#586e75:#657b83:#839496:#6c71c4:#93a1a1:#fdf6e3"
background_color = "#eee8d5"
cursor_color = "#002b36"
foreground_color = "#002b36"
visible_bell = False
scrollbar_position = hidden
icon_bell = False
show_titlebar = False
copy_on_selection = True
scrollback_infinite = True
[layouts] [layouts]
[[default]] [[default]]
[[[child1]]] [[[child1]]]
type = Terminal type = Terminal
parent = window0 parent = window0
profile = default profile = solarized-dark
[[[window0]]] [[[window0]]]
type = Window type = Window
parent = "" parent = ""

View File

@@ -61,15 +61,23 @@ Bundle 'tpope/vim-speeddating'
filetype plugin indent on filetype plugin indent on
set t_Co=256
" setup for the solarized color theme " setup for the solarized color theme
set background=dark set background=dark
let g:solarized_termcolors=16 let g:solarized_termcolors=16
let g:solarized_termtrans=1 let g:solarized_termtrans=1
let g:solarized_contrase="normal" let g:solarized_contrast="normal"
let g:solarized_visibility="normal" let g:solarized_visibility="normal"
syntax enable syntax enable
colorscheme solarized colorscheme solarized
" setup for vim-airline
let g:airline_left_sep = '▶'
let g:airline_right_sep = '◀'
"let g:airline_theme=
set colorcolumn=79
set clipboard=unnamed " enable copying into the clipboard set clipboard=unnamed " enable copying into the clipboard