This commit is contained in:
Daniel Lundin 2017-02-09 14:19:54 +01:00
parent fd246d2f86
commit 62fa00fb6e
8 changed files with 32 additions and 8 deletions

View file

@ -6,4 +6,10 @@ Xft.autohint: 0
Xft.hintstyle: hintfull
Xft.lcdfilter: lcddefault
XTerm*metaSendsEscape: true
XTerm.VT100.translations: #override \
Meta <Key> minus: smaller-vt-font() \n\
Meta <Key> plus: larger-vt-font() \n\
Super <Key> minus: smaller-vt-font() \n\
Super <Key> plus: larger-vt-font() \n\

View file

@ -10,7 +10,7 @@ alias timestamp='TZ=Z date "+%Y%m%dT%H%M%SZ"'
alias tree='tree -C'
alias upper="tr '[:lower:]' '[:upper:]'"
alias vimdiff='vimdiff -R'
alias vim='nvim'
alias vim=nvim
ls --group-directories-first >/dev/null 2>&1
if [ $? -gt 0 ] ; then

View file

@ -1,5 +1,5 @@
auto_close=2
ssh_args=-o StrictHostKeyChecking=no -o ForwardAgent=yes
terminal=xterm
terminal_args=-fa "xft:Droid Sans Mono Dotted:size=7:autohint=true:antialias=true"
terminal_args=-fa "xft:Ubuntu Mono:size=15"
terminal_bg_style=light

View file

@ -4,10 +4,12 @@ call vundle#begin()
" Plugins
Plugin 'VundleVim/Vundle.vim'
Plugin 'b4b4r07/vim-hcl'
" Plugin 'bling/vim-airline'
Plugin 'chriskempson/base16-vim'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'ervandew/supertab'
Plugin 'hashivim/vim-terraform'
Plugin 'itchyny/lightline.vim'
Plugin 'NLKNguyen/papercolor-theme'
Plugin 'rust-lang/rust.vim'
@ -322,7 +324,17 @@ let g:PaperColor_Light_Override = { 'Background' : '#fefe00' }
let g:lightline = {
\ 'colorscheme': 'seoul256',
\ 'component': { 'readonly': '%{&readonly?"":""}' },
\ 'component_function': {
\ 'filename': 'LightLineFilename'
\ }
\ }
" \ 'separator': { 'left': '', 'right': '' },
" \ 'subseparator': { 'left': '', 'right': '' }
function! LightLineFilename()
return expand('%:p:~')
endfunction
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}

View file

@ -76,7 +76,8 @@ bind K confirm kill-server
set -g status-fg "#cccccc"
set -g status-bg "#222222"
set -g status-left '#[bg="#999999",fg="#ffffff"] #I #[default]'
set -g status-right '#[bg="#444444",fg="#cccccc"] #T #[bg="#555555"] | #(date +"%R") '
#set -g status-right '#[bg="#444444",fg="#cccccc"] #T #[bg="#555555"] | #(date +"%R") '
set -g status-right '#[bg="#444444",fg="#cccccc"] #T #[bg="#555555"] | #{battery_percentage} #{battery_remain} | #(date +"%R") '
# Colors (Light)
#set -g message-fg colour226
@ -113,4 +114,6 @@ neww -d 'exec bash'
neww -d 'exec bash'
selectw -t 1
run-shell ~/src/github.com/tmux-plugins/tmux-battery/battery.tmux
# vim:set ft=tmux:

11
.vimrc
View file

@ -337,10 +337,6 @@ map ,h :echo "hi<" . synIDattr(synID(line("."),col("."),1),"name") . '> trans<'
set background=light
let g:PaperColor_Light_Override = { 'Background' : '#fefe00' }
let g:lightline = {
\ 'colorscheme': 'seoul256',
\ }
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
@ -350,5 +346,12 @@ let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
set g:lightline = {
\ 'colorscheme': 'seoul256',
\ 'component': {
\ 'readonly': '%{&readonly?"":""}',
\ }
\ }
color dln-light

BIN
bin/dwm

Binary file not shown.

2
bin/st
View file

@ -5,7 +5,7 @@ case `hostname` in
exec st.x86_64 -f "Roboto Mono:pixelsize=14" $@
;;
dredd)
exec st.x86_64 -f "Roboto Mono-18" $@
exec st.x86_64 -f "Roboto Mono-15" $@
;;
esac
exec st.x86_64 $@