updated xinitrc and neovim

This commit is contained in:
nkoehring 2016-02-26 02:26:05 +01:00
parent 2098417689
commit eaba6069bb
3 changed files with 23 additions and 30 deletions

View file

@ -1,27 +1,19 @@
setxkbmap de setxkbmap de
xset -b xset -b
# synaptics touchpad (order is important here)
synclient RightButtonAreaLeft=4501 synclient RightButtonAreaLeft=4501
synclient RightButtonAreaRight=0 synclient RightButtonAreaRight=0
synclient RightButtonAreaTop=4100 synclient RightButtonAreaTop=4100
synclient RightButtonAreaBottom=0 synclient RightButtonAreaBottom=0
synclient MiddleButtonAreaRight=4500
synclient MiddleButtonAreaLeft=2500 synclient MiddleButtonAreaLeft=2500
synclient MiddleButtonAreaTop=4100 synclient MiddleButtonAreaRight=4500
synclient MiddleButtonAreaTop=410
synclient MiddleButtonAreaBottom=0 synclient MiddleButtonAreaBottom=0
xinput set-prop "SynPS/2 Synaptics TouchPad" "Device Accel Profile" 2
xinput set-prop "SynPS/2 Synaptics TouchPad" "Device Accel Constant Deceleration" 4
xinput set-prop "SynPS/2 Synaptics TouchPad" "Device Accel Adaptive Deceleration" 4
xinput set-prop "SynPS/2 Synaptics TouchPad" "Device Accel Velocity Scaling" 8
# syndaemon (disable touchpad while typing) syndaemon -Rtki 1 & # disable touchpad while typing
syndaemon -Rtki 1 & redshift -l 52.3:13.3 & # no eyestrain please
[ -x ~/.fehbg ] && ~/.fehbg
# no eyestrain please compton --config ~/.config/comptonrc -b
xflux -l 52.3 -g 13.3 -r 1 exec sxhkd & # shortcuts
exec panel & # panel
# sound exec bspwm
#exec start-pulseaudio-x11
exec herbstluftwm

1
neovim/autoload/plug.vim Symbolic link
View file

@ -0,0 +1 @@
/home/nk/src/pkg/vim-plug/plug.vim

View file

@ -1,18 +1,15 @@
call plug#begin('~/.nvim/plugged') call plug#begin('~/.config/nvim/plugged')
Plug 'kchmck/vim-coffee-script'
Plug 'tpope/vim-haml'
Plug 'tpope/vim-speeddating' Plug 'tpope/vim-speeddating'
Plug 'kien/ctrlp.vim' Plug 'kien/ctrlp.vim'
Plug 'spolu/dwm.vim' Plug 'spolu/dwm.vim'
Plug 'mileszs/ack.vim' Plug 'mileszs/ack.vim'
Plug 'sunaku/xoria256.vim'
Plug 'mattn/emmet-vim' Plug 'mattn/emmet-vim'
Plug 'digitaltoad/vim-jade' Plug 'scrooloose/syntastic'
Plug 'wavded/vim-stylus'
Plug 'wting/rust.vim'
Plug 'farseer90718/vim-taskwarrior'
Plug 'majutsushi/tagbar' Plug 'majutsushi/tagbar'
Plug 'freitass/todo.txt-vim'
Plug 'jnurmine/zenburn'
Plug 'sheerun/vim-polyglot'
call plug#end() call plug#end()
@ -25,12 +22,14 @@ let g:tagbar_indent = 2
let g:tagbar_show_linenumbers = 1 let g:tagbar_show_linenumbers = 1
let g:tagbar_iconchars = ['►', '▼'] let g:tagbar_iconchars = ['►', '▼']
let g:ackprg = 'ag --nogroup --nocolor --column' let g:ackprg = 'ag --nogroup --nocolor --column'
colorscheme xoria256 let mapleader=' '
let maplocalleader=' '
colorscheme zenburn
set expandtab set expandtab
set shiftwidth=4 set shiftwidth=2
set tabstop=4 set tabstop=2
set softtabstop=4 set softtabstop=2
set encoding=utf-8 set encoding=utf-8
set textwidth=79 set textwidth=79
set colorcolumn=80 set colorcolumn=80
@ -39,5 +38,6 @@ set laststatus=2
set number set number
set wildmenu set wildmenu
set wildmode=list:longest,full set wildmode=list:longest,full
set hlsearch
"set cryptmethod=blowfish "set cryptmethod=blowfish
set t_Co=256 "set t_Co=256