diff --git a/dotfiles/Xresources b/dotfiles/Xresources index 1a4f9de..3d5ef58 100644 --- a/dotfiles/Xresources +++ b/dotfiles/Xresources @@ -46,7 +46,8 @@ *.color14: nord7 *.color15: nord6 -XTerm.vt100.faceName: xft:FuraCode Nerd Font:style=Light:size=11:antialias=true +XTerm.vt100.faceName: xft:Inconsolata:antialias=true +Xterm.vt100.faceSize: 12 XTerm.vt100.scrollBar: false Xterm.vt100.scrollBar.widht:1 diff --git a/dotfiles/bashrc b/dotfiles/bashrc index fda0eb9..5d067fc 100755 --- a/dotfiles/bashrc +++ b/dotfiles/bashrc @@ -9,16 +9,27 @@ GIT="\[\033[1;91m\](\$(git_branch))\[\033[m\]" DIR="\[\033[1;94m\]\w\[\033[m\]" export PS1="${NAME}@${HOST}:${DIR} ${GIT} ${CHAR} " +# Dotdrop alias dotdrop="~/dotfiles/dotdrop.sh --cfg=~/dotfiles/config.yaml" + +# Quality of Life alias ..="cd .." alias ll="ls -l" alias la="ls -la" alias rm="rm -i" + +# Common files alias bashrc="vim ~/.bashrc" alias sourcebashrc="source ~/.bashrc" alias sbash="sourcebashrc" alias vimrc="vim ~/.vimrc" +# Fonts +alias listfonts="fc-list :scalable=true:spacing=mono: family" +alias cachefonts="fc-cache -f -v" +# xterm -fa "Fontname" -fs 11 +# xrdb ~/.Xresources + # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc diff --git a/dotfiles/vimrc b/dotfiles/vimrc index 2a86d9d..41a9c82 100644 --- a/dotfiles/vimrc +++ b/dotfiles/vimrc @@ -32,7 +32,7 @@ let g:lightline = { \ 'colorscheme': 'wombat', \ 'active': { \ 'left': [ [ 'mode', 'paste' ], - \ [ 'gitbranch', 'readonly', 'filename', 'modified' ] ] + \ [ 'gitbranch', 'readonly', 'filename', 'modified' ] ] \ }, \ 'component_function': { \ 'gitbranch': 'gitbranch#name'