update
This commit is contained in:
parent
6976435409
commit
3e89506bd6
4 changed files with 17 additions and 13 deletions
|
@ -48,19 +48,20 @@ URxvt.boldFont: xft:Hack-9:bold
|
||||||
URxvt.italicfont: xft:Hack-9:italic
|
URxvt.italicfont: xft:Hack-9:italic
|
||||||
URxvt.bolditalicFont: xft:Hack-9:bold:italic
|
URxvt.bolditalicFont: xft:Hack-9:bold:italic
|
||||||
URxvt.letterSpace: -2
|
URxvt.letterSpace: -2
|
||||||
URxvt.perl-ext-common: default,matcher,bell-command
|
URxvt.perl-ext-common: default,matcher
|
||||||
|
!,bell-command
|
||||||
! this setting assumes that the current browser is set correctly via update-alternatives
|
! this setting assumes that the current browser is set correctly via update-alternatives
|
||||||
URxvt.url-launcher: /usr/bin/x-www-browser
|
URxvt.url-launcher: /usr/bin/x-www-browser
|
||||||
URxvt.matcher.button: 1
|
URxvt.matcher.button: 1
|
||||||
URxvt.urgentOnBell: true
|
URxvt.urgentOnBell: true
|
||||||
URxvt.saveLines: 65535
|
URxvt.saveLines: 65535
|
||||||
URxvt.bell-command: notify-send "Bell rang" "The bell rang in URxvt"
|
!URxvt.bell-command: notify-send "Bell rang" "The bell rang in URxvt"
|
||||||
! URxvt.termName: rxvt-256color
|
! URxvt.termName: rxvt-256color
|
||||||
URxvt.secondaryScroll: true
|
URxvt.secondaryScroll: true
|
||||||
URxvt.secondaryScreen: true
|
URxvt.secondaryScreen: true
|
||||||
|
|
||||||
! URxvt with solarized colors
|
! URxvt with solarized colors
|
||||||
URxvt.background: rgba:0000/2b00/3600/c000
|
URxvt.background: rgba:0000/2b00/3600/f000
|
||||||
URxvt.foreground: S_base0
|
URxvt.foreground: S_base0
|
||||||
! URxvt.fading: 40
|
! URxvt.fading: 40
|
||||||
URxvt.fadeColor: S_base03
|
URxvt.fadeColor: S_base03
|
||||||
|
|
|
@ -8,6 +8,10 @@ alias xzc='xz --best --extreme'
|
||||||
alias halt='systemctl poweroff'
|
alias halt='systemctl poweroff'
|
||||||
alias reboot='systemctl reboot'
|
alias reboot='systemctl reboot'
|
||||||
|
|
||||||
|
alias extip='curl -LR1fs --compressed https://ipinfo.io/ | jq -Sc'
|
||||||
|
|
||||||
|
alias jjar='java -jar'
|
||||||
|
|
||||||
current_dist=`lsb_release -c -s`
|
current_dist=`lsb_release -c -s`
|
||||||
all_dkms_packages="`apt-cache rdepends --installed dkms | sed -rn 's/^ +([^ ]+)$/\1/p' | sort -iu`"
|
all_dkms_packages="`apt-cache rdepends --installed dkms | sed -rn 's/^ +([^ ]+)$/\1/p' | sort -iu`"
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,6 @@
|
||||||
|
|
||||||
[core]
|
[core]
|
||||||
preloadindex = 1
|
preloadindex = 1
|
||||||
attributesfile = ~/.gitattributes
|
|
||||||
|
|
||||||
[merge]
|
[merge]
|
||||||
renormalize = true
|
renormalize = true
|
||||||
|
@ -34,7 +33,3 @@
|
||||||
|
|
||||||
[pack]
|
[pack]
|
||||||
threads = 0
|
threads = 0
|
||||||
|
|
||||||
[filter "uncrustify_cpp"]
|
|
||||||
clean = /usr/bin/uncrustify -c /home/schtobia/.config/uncrustify/cpp.cfg -l cpp
|
|
||||||
|
|
||||||
|
|
14
vimrc
14
vimrc
|
@ -1,21 +1,24 @@
|
||||||
syntax enable
|
syntax enable
|
||||||
let g:solarized_hitrail=1
|
|
||||||
"let g:solarized_termcolors=256
|
|
||||||
colorscheme solarized
|
|
||||||
if has('gui_running')
|
if has('gui_running')
|
||||||
set background=light
|
set background=light
|
||||||
|
set gfn=Hack\ Regular\ 9
|
||||||
else
|
else
|
||||||
set background=dark
|
set background=dark
|
||||||
endif
|
endif
|
||||||
|
let g:solarized_hitrail=1
|
||||||
|
"let g:solarized_termcolors=256
|
||||||
|
colorscheme solarized
|
||||||
|
call togglebg#map("<F5>")
|
||||||
let load_doxygen_syntax = 1
|
let load_doxygen_syntax = 1
|
||||||
set autoindent
|
"set autoindent
|
||||||
set encoding=utf-8
|
set encoding=utf-8
|
||||||
set icon
|
set icon
|
||||||
set smartindent
|
"set smartindent
|
||||||
set smartcase
|
set smartcase
|
||||||
set spelllang=de,en
|
set spelllang=de,en
|
||||||
set softtabstop=4
|
set softtabstop=4
|
||||||
set tabstop=4
|
set tabstop=4
|
||||||
|
set shiftwidth=4
|
||||||
set nowrap
|
set nowrap
|
||||||
set number
|
set number
|
||||||
set foldmethod=indent
|
set foldmethod=indent
|
||||||
|
@ -24,3 +27,4 @@ set nofoldenable
|
||||||
set modeline
|
set modeline
|
||||||
set listchars=eol:¶,tab:\»\ ,trail:~,extends:>,precedes:<
|
set listchars=eol:¶,tab:\»\ ,trail:~,extends:>,precedes:<
|
||||||
set list
|
set list
|
||||||
|
filetype plugin indent on
|
||||||
|
|
Loading…
Reference in a new issue