Skip to content

Instantly share code, notes, and snippets.

View paalped's full-sized avatar

Paal Pedersen paalped

  • Oslo Kommune
  • Oslo
View GitHub Profile
@paalped
paalped / .vimrc
Created May 16, 2020 17:42 — forked from miguelgrinberg/.vimrc
My .vimrc configuration for working in Python with vim
" plugins
let need_to_install_plugins = 0
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
"autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
let need_to_install_plugins = 1
endif
call plug#begin()
@paalped
paalped / .tmux.conf
Created May 16, 2020 17:42 — forked from miguelgrinberg/.tmux.conf
My .tmux.conf file for working with tmux
# Set the prefix to ^A.
unbind C-b
set -g prefix ^A
bind a send-prefix
# Start windows and panes at 1, not 0
set -g base-index 1
set -g pane-base-index 1
set -g renumber-windows on