"" vim:ft=vim set nocompatible set number set title set ttyfast set ruler " Tabbing (mainly) set tabstop=5 set shiftwidth=5 set shiftround set autoindent set smartindent inoremap # X# set list set listchars=tab:»·,trail:·,extends:…,precedes:…,nbsp:␠ " Folding set foldmethod=marker " Colors set bg=dark colorscheme mine syntax enable set t_Co=256 " Swapfiles set backupdir=~/.vim-backup set dir=~/.vim-backup " Searching set smartcase set ignorecase set hlsearch set incsearch set redrawtime=500 " Greedy remaps (TODO: Add more keys) noremap - : noremap r h noremap n j noremap t k noremap h l noremap c n noremap f p