Compare commits

..

No commits in common. "b4c72c46ac3d614c80a158179c79a6f468b7f77f" and "19bde413c2579dab95382e8bc95ef8570281dbf9" have entirely different histories.

4 changed files with 1 additions and 32 deletions

View file

@ -1,20 +0,0 @@
#!/bin/bash
synclient=/usr/bin/synclient
prop='TouchpadOff'
if ! [ -x "$synclient" ]; then
exit 2
fi
state=$(${synclient} -l \
| grep "^ ${prop}" \
| sed 's/^.*= \([01]\)$/\1/g' \
| head -n 1)
if [ -z "$state" ] || $(echo "$state" | grep -vq '^[01]$') ; then
exit 1
fi
nState=$((($state + 1) % 2))
$synclient "$prop=$nState"

View file

@ -38,9 +38,6 @@ bindsym $mod+z exec ~/.config/i3/bin/i3lock
# kill focused window # kill focused window
bindsym $mod+Shift+q kill bindsym $mod+Shift+q kill
# Toggle touchpad
bindsym $mod+t exec ~/.config/i3/bin/toggle-touchpad
## Specific applications ## Specific applications
# start dmenu (a program launcher) # start dmenu (a program launcher)
bindsym $mod+d exec dmenu_run bindsym $mod+d exec dmenu_run

View file

@ -1,5 +0,0 @@
nnoremap L <Esc>:CoqNext<CR>
nnoremap H <Esc>:CoqUndo<CR>
nnoremap <LocalLeader>c <Esc>:CoqToCursor<CR>
nnoremap <LocalLeader>k <Esc>:CoqKill<CR>
nnoremap <LocalLeader>l <Esc>:CoqLaunch<CR>

View file

@ -1,5 +1,5 @@
filetype plugin on
syntax on syntax on
filetype plugin on
set colorcolumn=80 set colorcolumn=80
set background=dark set background=dark
set number set number
@ -68,9 +68,6 @@ Plugin 'vim-airline/vim-airline-themes'
Plugin 'vim-scripts/a.vim' Plugin 'vim-scripts/a.vim'
Plugin 'rhysd/vim-clang-format' Plugin 'rhysd/vim-clang-format'
Plugin 'christoomey/vim-tmux-navigator' Plugin 'christoomey/vim-tmux-navigator'
Plugin 'chrisbra/csv.vim'
Plugin 'let-def/vimbufsync'
Plugin 'the-lambda-church/coquille'
call vundle#end() " required call vundle#end() " required
filetype plugin indent on " required filetype plugin indent on " required