Add .ezsh alias and env-var for qt5ct
This commit is contained in:
parent
f04e3b1aef
commit
e03ae84fdf
3 changed files with 12 additions and 1 deletions
.config
|
@ -3,6 +3,7 @@
|
|||
alias .evim='$EDITOR $HOME/.config/vim/vimrc'
|
||||
alias .ebspwm='$EDITOR $HOME/.config/bspwm/bspwmrc'
|
||||
alias .eqb='$EDITOR $HOME/.config/qutebrowser/config.py'
|
||||
alias .ezsh='$EDITOR $HOME/.config/zsh/.zshrc'
|
||||
alias .f='git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
|
||||
|
||||
alias aliases='$EDITOR ~/.config/aliasrc && source ~/.config/aliasrc'
|
||||
|
|
|
@ -25,6 +25,8 @@ export OSH="$XDG_CONFIG_HOME/bash/oh-my-bash"
|
|||
export PASSWORD_STORE_GENERATED_LENGTH='64'
|
||||
export PATH=$HOME/.local/bin:/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:$GOPATH/bin
|
||||
|
||||
export QT_QPA_PLATFORMTHEME="qt5ct"
|
||||
|
||||
export VIMINIT="source $XDG_CONFIG_HOME/vim/vimrc"
|
||||
|
||||
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
set runtimepath+=~/.config/vim,~/.config/vim/after
|
||||
set packpath+=~/.config/vim
|
||||
|
||||
if has('nvim')
|
||||
" Neovim specific commands
|
||||
|
@ -37,6 +38,9 @@ call plug#begin('~/.config/vim/plugged')
|
|||
Plug 'sheerun/vim-polyglot'
|
||||
call plug#end()
|
||||
|
||||
packadd! dracula_pro
|
||||
|
||||
|
||||
"let g:indentLine_setColors = 0
|
||||
|
||||
packadd termdebug
|
||||
|
@ -149,9 +153,13 @@ let g:jellybeans_overrides = {
|
|||
\ '256ctermbg': 'none'
|
||||
\ },
|
||||
\ }
|
||||
colorscheme dracula
|
||||
"colorscheme dracula
|
||||
let g:dracula_colorterm = 0
|
||||
colorscheme dracula_pro
|
||||
|
||||
highlight Normal ctermbg=NONE
|
||||
|
||||
|
||||
let g:highlightedyank_highlight_duration = 250
|
||||
|
||||
let g:syntastic_always_populate_loc_list = 0
|
||||
|
|
Loading…
Reference in a new issue