summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorben <benjaminfranzke@gmail.com>2010-02-25 20:08:34 +0100
committerben <benjaminfranzke@gmail.com>2010-02-25 20:08:34 +0100
commitd6bc393c24924d77aa29d467fa33c47e772ac2b4 (patch)
tree58a0381214897d2ab7e158348caaa3d73425ef2f
parent7f9f6e8f4a952b05e1be20ba2a5f71d0522a9d72 (diff)
parent14554a66fa9b317259cc70ca0858d258ddd5ad59 (diff)
downloaddotfiles-d6bc393c24924d77aa29d467fa33c47e772ac2b4.tar.gz
dotfiles-d6bc393c24924d77aa29d467fa33c47e772ac2b4.tar.bz2
dotfiles-d6bc393c24924d77aa29d467fa33c47e772ac2b4.zip
Merge branch 'master' of github.com:benf/dotfiles
-rw-r--r--.bashrc2
-rw-r--r--.conkyrc2
-rw-r--r--.vim/colors/tango.vim80
-rw-r--r--.vimrc3
4 files changed, 84 insertions, 3 deletions
diff --git a/.bashrc b/.bashrc
index 8e80abe..2ff65d8 100644
--- a/.bashrc
+++ b/.bashrc
@@ -45,7 +45,7 @@ alias ccat="highlight --ansi"
alias hhtml="highlight --wrap --xhtml --linenumbers --anchors --linenumbers --anchor-prefix=line"
alias use="quse -D"
-alias tv="~/tv.sh"
+alias tv="~/.scripts/tv.sh"
# if files are requested to open, open in existing in tabs.
gvim() {
/usr/bin/gvim $([[ $# > 0 ]] && echo --remote-tab-silent $@)
diff --git a/.conkyrc b/.conkyrc
index e5b5630..965a825 100644
--- a/.conkyrc
+++ b/.conkyrc
@@ -22,7 +22,7 @@ draw_shades no
#position
gap_x 0
gap_y 0
-alignment top_right
+alignment top_left
#behaviour
update_interval 1
diff --git a/.vim/colors/tango.vim b/.vim/colors/tango.vim
new file mode 100644
index 0000000..2aa23e1
--- /dev/null
+++ b/.vim/colors/tango.vim
@@ -0,0 +1,80 @@
+"
+" Tango Vim Color Scheme
+" =======================
+"
+" For best results, set up your terminal with a Tango palette.
+" Instructions for GNOME Terminal:
+" http://uwstopia.nl/blog/2006/07/tango-terminal
+"
+" author: Michele Campeotto <micampe@micampe.it>
+"
+set background=dark
+
+hi clear
+if exists("syntax_on")
+ syntax reset
+endif
+
+let colors_name = "tango"
+
+" Default Colors
+hi Normal guifg=#eeeeec guibg=#000000
+hi Normal ctermfg=grey ctermbg=black
+hi NonText guifg=#555753 guibg=#000000 gui=none
+hi NonText ctermfg=darkgray
+hi Cursor guibg=#d3d7cf
+hi lCursor guibg=#d3d7cf
+
+" Search
+hi Search guifg=#eeeeec guibg=#c4a000
+hi Search cterm=none ctermfg=grey ctermbg=blue
+hi IncSearch guibg=#eeeeec guifg=#729fcf
+hi IncSearch cterm=none ctermfg=yellow ctermbg=green
+
+" Window Elements
+hi StatusLine guifg=#eeeeec guibg=#4e9a06 gui=bold
+hi StatusLine ctermfg=white ctermbg=green cterm=bold
+hi StatusLineNC guifg=#d3d7df guibg=#4e9a06
+hi StatusLineNC ctermfg=lightgray ctermbg=darkgreen
+hi VertSplit guifg=#eeeeec guibg=#eeeeec
+hi Folded guifg=#eeeeec guibg=#75507b
+hi Folded ctermfg=white ctermbg=magenta
+hi Visual guifg=#d3d7cf guibg=#4e9a06
+hi Visual ctermbg=white ctermfg=lightgreen cterm=reverse
+
+" Specials
+hi Todo guifg=#8ae234 guibg=#4e9a06 gui=bold
+hi Todo ctermfg=white ctermbg=green
+hi Title guifg=#eeeeec gui=bold
+hi Title ctermfg=white cterm=bold
+
+" Syntax
+hi Constant guifg=#c4a000
+hi Constant ctermfg=darkyellow
+hi Number guifg=#729fcf
+hi Number ctermfg=darkblue
+hi Statement guifg=#4e9a06 gui=bold
+hi Statement ctermfg=green
+hi Identifier guifg=#8ae234
+hi Identifier ctermfg=darkgreen
+hi PreProc guifg=#cc0000
+hi PreProc ctermfg=darkred
+hi Comment guifg=#06989a gui=italic
+hi Comment ctermfg=cyan cterm=none
+hi Type guifg=#d3d7cf gui=bold
+hi Type ctermfg=gray cterm=bold
+hi Special guifg=#75507b
+hi Special ctermfg=magenta cterm=none
+hi Error guifg=#eeeeec guibg=#ef2929
+hi Error ctermfg=white ctermbg=red
+
+" Diff
+hi DiffAdd guifg=fg guibg=#3465a4 gui=none
+hi DiffAdd ctermfg=gray ctermbg=blue cterm=none
+hi DiffChange guifg=fg guibg=#555753 gui=none
+hi DiffChange ctermfg=gray ctermbg=darkgray cterm=none
+hi DiffDelete guibg=bg
+hi DiffDelete ctermfg=gray ctermbg=none cterm=none
+hi DiffText guifg=fg guibg=#c4a000 gui=none
+hi DiffText ctermfg=gray ctermbg=yellow cterm=none
+
diff --git a/.vimrc b/.vimrc
index 04673cb..b3e7833 100644
--- a/.vimrc
+++ b/.vimrc
@@ -88,4 +88,5 @@ au BufRead,BufNewFile /tmp/bash-* let is_bash=1|setfiletype sh
" vimmanpager stuff
" disable line numbers when using vim as manpager
-autocmd FileType man set nonumber
+autocmd FileType man set nonumber nohlsearch nohlsearch
+