Skip to content

Instantly share code, notes, and snippets.

@vergeev
Created January 27, 2019 13:00
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 vergeev/94b161316906b4c7769d5eff6d107ad8 to your computer and use it in GitHub Desktop.
Save vergeev/94b161316906b4c7769d5eff6d107ad8 to your computer and use it in GitHub Desktop.
The vimrc I've spent most of my student years with
"Vundle stuff
set nocompatible " be iMproved, required
filetype off " required
"set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
"let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'hynek/vim-python-pep8-indent'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
"End of Vundle stuff
"This line is for Git messages
autocmd Filetype gitcommit setlocal spell textwidth=72
"Making it code-oriented
syntax on
set number
set relativenumber
set hlsearch
"Local vimrc
set exrc
set secure
"Spaces
set tabstop=2
set shiftwidth=2
set expandtab
filetype plugin on
filetype plugin indent on
"Getting comfy
:command W w
"Russian
set keymap=russian-jcukenwin
set iminsert=0
set imsearch=0
highlight lCursor guifg=NONE guibg=Cyan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment