Skip to content

Instantly share code, notes, and snippets.

@mpokryva
Last active November 5, 2020 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mpokryva/c76241d6e3052884bd12f440ccf0c503 to your computer and use it in GitHub Desktop.
Save mpokryva/c76241d6e3052884bd12f440ccf0c503 to your computer and use it in GitHub Desktop.
My .vimrc
set nocompatible
filetype off
set number
filetype plugin indent on
syntax on
set backspace=indent,eol,start
" Keymappings
:imap <C-d> <C-[>diwi
" Plugins
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" All of your Plugins must be added before the following line
call vundle#end()
set visualbell
set noerrorbells
set clipboard=unnamed
" show existing tab with 4 spaces width
set tabstop=4
" when indenting with '>', use 4 spaces width
set shiftwidth=4
" On pressing tab, insert 4 spaces
set expandtab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment