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.bolditalicFont: xft:Hack-9:bold:italic
|
||||
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
|
||||
URxvt.url-launcher: /usr/bin/x-www-browser
|
||||
URxvt.matcher.button: 1
|
||||
URxvt.urgentOnBell: true
|
||||
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.secondaryScroll: true
|
||||
URxvt.secondaryScreen: true
|
||||
|
||||
! URxvt with solarized colors
|
||||
URxvt.background: rgba:0000/2b00/3600/c000
|
||||
URxvt.background: rgba:0000/2b00/3600/f000
|
||||
URxvt.foreground: S_base0
|
||||
! URxvt.fading: 40
|
||||
URxvt.fadeColor: S_base03
|
||||
|
|
|
@ -8,6 +8,10 @@ alias xzc='xz --best --extreme'
|
|||
alias halt='systemctl poweroff'
|
||||
alias reboot='systemctl reboot'
|
||||
|
||||
alias extip='curl -LR1fs --compressed https://ipinfo.io/ | jq -Sc'
|
||||
|
||||
alias jjar='java -jar'
|
||||
|
||||
current_dist=`lsb_release -c -s`
|
||||
all_dkms_packages="`apt-cache rdepends --installed dkms | sed -rn 's/^ +([^ ]+)$/\1/p' | sort -iu`"
|
||||
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
|
||||
[core]
|
||||
preloadindex = 1
|
||||
attributesfile = ~/.gitattributes
|
||||
|
||||
[merge]
|
||||
renormalize = true
|
||||
|
@ -34,7 +33,3 @@
|
|||
|
||||
[pack]
|
||||
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
|
||||
let g:solarized_hitrail=1
|
||||
"let g:solarized_termcolors=256
|
||||
colorscheme solarized
|
||||
if has('gui_running')
|
||||
set background=light
|
||||
set gfn=Hack\ Regular\ 9
|
||||
else
|
||||
set background=dark
|
||||
endif
|
||||
let g:solarized_hitrail=1
|
||||
"let g:solarized_termcolors=256
|
||||
colorscheme solarized
|
||||
call togglebg#map("<F5>")
|
||||
let load_doxygen_syntax = 1
|
||||
set autoindent
|
||||
"set autoindent
|
||||
set encoding=utf-8
|
||||
set icon
|
||||
set smartindent
|
||||
"set smartindent
|
||||
set smartcase
|
||||
set spelllang=de,en
|
||||
set softtabstop=4
|
||||
set tabstop=4
|
||||
set shiftwidth=4
|
||||
set nowrap
|
||||
set number
|
||||
set foldmethod=indent
|
||||
|
@ -24,3 +27,4 @@ set nofoldenable
|
|||
set modeline
|
||||
set listchars=eol:¶,tab:\»\ ,trail:~,extends:>,precedes:<
|
||||
set list
|
||||
filetype plugin indent on
|
||||
|
|
Loading…
Reference in a new issue