Skip to content

Instantly share code, notes, and snippets.

@luistung
Last active April 24, 2019 03:31
Show Gist options
  • Save luistung/03de4ba6da9fb30b6a9fd281494c253d to your computer and use it in GitHub Desktop.
Save luistung/03de4ba6da9fb30b6a9fd281494c253d to your computer and use it in GitHub Desktop.
vim config
syntax on
colorscheme desert
set number
set cindent
set tabstop=4
set shiftwidth=4
set expandtab
set termencoding=utf-8
set fileencodings=utf-8
set encoding=utf-8
set nobackup
set noswapfile
set tags=tags;
set hls
set backspace=indent,eol,start " fix backspace
filetype indent on
set nocompatible " required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'vim-scripts/indentpython.vim'
Plugin 'vim-syntastic/syntastic'
Plugin 'Yggdroot/indentLine'
Plugin 'majutsushi/tagbar'
Plugin 'scrooloose/nerdtree'
Plugin 'a.vim'
call vundle#end()
filetype plugin indent on
let g:syntastic_python_python_exec = 'python3'
set mouse-=a
set hlsearch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment