Updates
This commit is contained in:
parent
fd246d2f86
commit
62fa00fb6e
8 changed files with 32 additions and 8 deletions
|
@ -6,4 +6,10 @@ Xft.autohint: 0
|
||||||
Xft.hintstyle: hintfull
|
Xft.hintstyle: hintfull
|
||||||
Xft.lcdfilter: lcddefault
|
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\
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ alias timestamp='TZ=Z date "+%Y%m%dT%H%M%SZ"'
|
||||||
alias tree='tree -C'
|
alias tree='tree -C'
|
||||||
alias upper="tr '[:lower:]' '[:upper:]'"
|
alias upper="tr '[:lower:]' '[:upper:]'"
|
||||||
alias vimdiff='vimdiff -R'
|
alias vimdiff='vimdiff -R'
|
||||||
alias vim='nvim'
|
alias vim=nvim
|
||||||
|
|
||||||
ls --group-directories-first >/dev/null 2>&1
|
ls --group-directories-first >/dev/null 2>&1
|
||||||
if [ $? -gt 0 ] ; then
|
if [ $? -gt 0 ] ; then
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
auto_close=2
|
auto_close=2
|
||||||
ssh_args=-o StrictHostKeyChecking=no -o ForwardAgent=yes
|
ssh_args=-o StrictHostKeyChecking=no -o ForwardAgent=yes
|
||||||
terminal=xterm
|
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
|
terminal_bg_style=light
|
||||||
|
|
|
@ -4,10 +4,12 @@ call vundle#begin()
|
||||||
|
|
||||||
" Plugins
|
" Plugins
|
||||||
Plugin 'VundleVim/Vundle.vim'
|
Plugin 'VundleVim/Vundle.vim'
|
||||||
|
Plugin 'b4b4r07/vim-hcl'
|
||||||
" Plugin 'bling/vim-airline'
|
" Plugin 'bling/vim-airline'
|
||||||
Plugin 'chriskempson/base16-vim'
|
Plugin 'chriskempson/base16-vim'
|
||||||
Plugin 'ctrlpvim/ctrlp.vim'
|
Plugin 'ctrlpvim/ctrlp.vim'
|
||||||
Plugin 'ervandew/supertab'
|
Plugin 'ervandew/supertab'
|
||||||
|
Plugin 'hashivim/vim-terraform'
|
||||||
Plugin 'itchyny/lightline.vim'
|
Plugin 'itchyny/lightline.vim'
|
||||||
Plugin 'NLKNguyen/papercolor-theme'
|
Plugin 'NLKNguyen/papercolor-theme'
|
||||||
Plugin 'rust-lang/rust.vim'
|
Plugin 'rust-lang/rust.vim'
|
||||||
|
@ -322,7 +324,17 @@ let g:PaperColor_Light_Override = { 'Background' : '#fefe00' }
|
||||||
|
|
||||||
let g:lightline = {
|
let g:lightline = {
|
||||||
\ 'colorscheme': 'seoul256',
|
\ '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+=%#warningmsg#
|
||||||
set statusline+=%{SyntasticStatuslineFlag()}
|
set statusline+=%{SyntasticStatuslineFlag()}
|
||||||
|
|
|
@ -76,7 +76,8 @@ bind K confirm kill-server
|
||||||
set -g status-fg "#cccccc"
|
set -g status-fg "#cccccc"
|
||||||
set -g status-bg "#222222"
|
set -g status-bg "#222222"
|
||||||
set -g status-left '#[bg="#999999",fg="#ffffff"] #I #[default]'
|
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)
|
# Colors (Light)
|
||||||
#set -g message-fg colour226
|
#set -g message-fg colour226
|
||||||
|
@ -113,4 +114,6 @@ neww -d 'exec bash'
|
||||||
neww -d 'exec bash'
|
neww -d 'exec bash'
|
||||||
selectw -t 1
|
selectw -t 1
|
||||||
|
|
||||||
|
run-shell ~/src/github.com/tmux-plugins/tmux-battery/battery.tmux
|
||||||
|
|
||||||
# vim:set ft=tmux:
|
# vim:set ft=tmux:
|
||||||
|
|
11
.vimrc
11
.vimrc
|
@ -337,10 +337,6 @@ map ,h :echo "hi<" . synIDattr(synID(line("."),col("."),1),"name") . '> trans<'
|
||||||
set background=light
|
set background=light
|
||||||
let g:PaperColor_Light_Override = { 'Background' : '#fefe00' }
|
let g:PaperColor_Light_Override = { 'Background' : '#fefe00' }
|
||||||
|
|
||||||
let g:lightline = {
|
|
||||||
\ 'colorscheme': 'seoul256',
|
|
||||||
\ }
|
|
||||||
|
|
||||||
set statusline+=%#warningmsg#
|
set statusline+=%#warningmsg#
|
||||||
set statusline+=%{SyntasticStatuslineFlag()}
|
set statusline+=%{SyntasticStatuslineFlag()}
|
||||||
set statusline+=%*
|
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_open = 1
|
||||||
let g:syntastic_check_on_wq = 0
|
let g:syntastic_check_on_wq = 0
|
||||||
|
|
||||||
|
set g:lightline = {
|
||||||
|
\ 'colorscheme': 'seoul256',
|
||||||
|
\ 'component': {
|
||||||
|
\ 'readonly': '%{&readonly?"":""}',
|
||||||
|
\ }
|
||||||
|
\ }
|
||||||
|
|
||||||
color dln-light
|
color dln-light
|
||||||
|
|
||||||
|
|
BIN
bin/dwm
BIN
bin/dwm
Binary file not shown.
2
bin/st
2
bin/st
|
@ -5,7 +5,7 @@ case `hostname` in
|
||||||
exec st.x86_64 -f "Roboto Mono:pixelsize=14" $@
|
exec st.x86_64 -f "Roboto Mono:pixelsize=14" $@
|
||||||
;;
|
;;
|
||||||
dredd)
|
dredd)
|
||||||
exec st.x86_64 -f "Roboto Mono-18" $@
|
exec st.x86_64 -f "Roboto Mono-15" $@
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
exec st.x86_64 $@
|
exec st.x86_64 $@
|
||||||
|
|
Loading…
Reference in a new issue