Update configs

This commit is contained in:
Sergey 2018-06-13 17:22:10 +03:00
parent 0c78a57821
commit f79ec9a1da
6 changed files with 13 additions and 8 deletions

View File

@ -33,7 +33,7 @@ URxvt*keysym.C-F5: perl:urxvt-colors:
URxvt.keysym.M-Escape: perl:keyboard-select:activate
URxvt.keysym.M-s: perl:keyboard-select:search
URxvt.url-select.launcher: chromium-browser
URxvt.url-select.launcher: firefox
URxvt.url-select.underline: true
URxvt.url-select.button: 1
URxvt.keysym.M-u: perl:url-select:select_next

View File

@ -6,7 +6,7 @@
# ----------------------------------------------------------------------
auto-reload yes
browser surf
browser firefox
cleanup-on-quit yes
# download-path "/home/moparx/downloads/podcasts"
feed-sort-order title-dec

View File

@ -2,7 +2,7 @@ set nocompatible
filetype off
set rtp+=$HOME/.config/nvim/bundle/Vundle.vim
call vundle#begin()
call vundle#begin('$HOME/.config/nvim/bundle')
" let Vundle manage Vundle
" required!

View File

@ -1,7 +1,9 @@
#!/bin/sh
BROWSER=chromium
XTERM=urxvt
export BROWSER=firefox
export XTERM=urxvt
export LANGUAGE=en_US:en_GB:en
export LC_TIME=ru_RU.UTF-8
export QT_QPA_PLATFORMTHEME=qt5ct
unset QT_STYLE_OVERRIDE

7
.zshrc
View File

@ -1,4 +1,7 @@
# Добавляем ~/bin в PATH
if [ -d $HOME/.local/bin ] ; then
PATH=$HOME/.local/bin:$PATH
fi
if [ -d $HOME/bin ] ; then
PATH=$HOME/bin:$PATH
fi
@ -128,9 +131,7 @@ esac
# shopt -s extglob; if [[ -z $DISPLAY ]] && ! pgrep X &>/dev/null; then tput setaf 3; tput bold; read -t 5 -p 'Start X? [Y/n] '; tput sgr0; [[ -z $REPLY || $REPLY = [Yy]?([Ee][Ss]) ]] && startx; fi
export LANGUAGE="en_US:en_GB:en"
export PATH="$HOME/.dynamic-colors/bin:$PATH"
source $HOME/.dynamic-colors/completions/dynamic-colors.zsh
# Load all files from .shell/zshrc.d directory

2
.zshrc.d/locale.zsh Normal file
View File

@ -0,0 +1,2 @@
export LANGUAGE=en_US:en_GB:en
export LC_TIME=ru_RU.UTF-8