Skip to content

Commit

Permalink
Update config
Browse files Browse the repository at this point in the history
  • Loading branch information
indrekj committed Jul 20, 2013
1 parent f78ef34 commit 037bf29
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .Xdefaults
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@

Xft.dpi: 109
Xft.hinting: true
Xft.hintstyle: hintfull
Xft.autohint: false
Xft.hintstyle: hintslight
Xft.antialias: true
Xft.rgba: rgb
Xft.lcdfilter: lcddefault

!
! Xcursor
Expand Down Expand Up @@ -40,7 +42,8 @@ Xcursor.size: 16
*hideButtons: true

!urxvt*font: xft:DejaVu Sans Mono:size=11
*font: xft:Inconsolata:pixelsize=20
*xftAntialias: true
*font: xft:Inconsolata:pixelsize=18:antialias=true:hinting=true

! TODO: use alt or rxvt own stuff. we use ctrl-num keys in vim
! Bind C-0, C-1, ..., C-6 activate larger fonts.
Expand Down
24 changes: 24 additions & 0 deletions .fonts.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
<edit name="antialias" mode="assign">
<bool>true</bool>
</edit>
<edit name="hinting" mode="assign">
<bool>true</bool>
</edit>
<edit name="rgba" mode="assign">
<const>rgb</const>
</edit>
<edit name="autohint" mode="assign">
<bool>false</bool>
</edit>
<edit name="hintstyle" mode="assign">
<const>hintslight</const>
</edit>
<edit mode="assign" name="lcdfilter">
<const>lcddefault</const>
</edit>
</match>
</fontconfig>
2 changes: 1 addition & 1 deletion .vim/bundle/vundle
Submodule vundle updated from 5dd478 to 769010
2 changes: 1 addition & 1 deletion .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ set visualbell
set t_vb=

" Use ack instead of grep
set grepprg=ack-grep\ -a\ --ignore-dir=log\ --ignore-dir=tmp
set grepprg=ack-grep\ --ignore-dir=log\ --ignore-dir=tmp

set wildmode=list:longest
set wildignore+=.hg,.git,.svn " Version control
Expand Down
2 changes: 2 additions & 0 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ export EDITOR='vim'

# Aliases
alias pp='python -mjson.tool'
alias spotify-next='DISPLAY=:0 dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Next'
alias spotify-pause='DISPLAY=:0 dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.PlayPause'

# no spelling correction for these commands
alias vim='nocorrect vim'
Expand Down

0 comments on commit 037bf29

Please sign in to comment.