Fix urxvt, vim

This commit is contained in:
2018-08-17 23:38:00 +02:00
parent d30fef2533
commit 70d9968358
5 changed files with 6 additions and 8 deletions

View File

@@ -4,3 +4,4 @@ mail: hannes.koerber@haktec.de
git_gpg_sign: true git_gpg_sign: true
gpg_agent: true gpg_agent: true
ssh_agent: true ssh_agent: true
terminal_binary: urxvt256c

View File

@@ -4,3 +4,4 @@ mail: hannes.koerber@tradebyte.com
git_gpg_sign: false git_gpg_sign: false
gpg_agent: false gpg_agent: false
ssh_agent: false ssh_agent: false
terminal_binary: urxvt

View File

@@ -17,8 +17,8 @@
set $mod Mod4 set $mod Mod4
# The default terminal # The default terminal
set $terminal "urxvt -title terminal" set $terminal "{{ machine.terminal_binary }} -title terminal"
set $calc "urxvt -title calc -e $SHELL -i -c calc" set $calc "{{ machine.terminal_binary }} -title calc -e $SHELL -i -c calc"
set $scriptdir ~/.i3/scripts set $scriptdir ~/.i3/scripts

View File

@@ -51,12 +51,6 @@ fi
# because gpg-agent is somehow broken for ssh, use the usual ssh-agent # because gpg-agent is somehow broken for ssh, use the usual ssh-agent
eval $(ssh-agent -s) eval $(ssh-agent -s)
{% if distro == 'fedora' %}
alias urxvt=urxvt256c
{% endif %}
alias vim="nvim"
# exec startx breaks some logind fuckery, without exec it works # exec startx breaks some logind fuckery, without exec it works
if [[ -z $DISPLAY ]] ; then if [[ -z $DISPLAY ]] ; then
if (( $XDG_VTNR == 1 )) ; then if (( $XDG_VTNR == 1 )) ; then

View File

@@ -1,3 +1,5 @@
alias vim="nvim"
### COMMON OPERATIONS ### COMMON OPERATIONS
alias ll='ls -AlFh' alias ll='ls -AlFh'
alias la='ls -A' alias la='ls -A'