Skip to content

Instantly share code, notes, and snippets.

@tonitch
Created September 24, 2018 20:59
Show Gist options
  • Save tonitch/417168b675d43f1287cf084cdd2c28de to your computer and use it in GitHub Desktop.
Save tonitch/417168b675d43f1287cf084cdd2c28de to your computer and use it in GitHub Desktop.
let python_highlight_all=1
let g:pymode_python = 'python3'
syntax on
"Enable folding + space to fold
set foldmethod=indent
set foldlevel=99
nnoremap <space> za
map <F12> <ESC>:!cls & py %<CR>
map <F11> <ESC>:!cls & py<CR>
set nu
set guifont=Courier_new:h11
set encoding=utf-8
set nocompatible
color desert
filetype off
set rtp+=/root/.vim/bundle/Vundle.vim/
call vundle#begin()
Plugin 'vundleVim/Vundle.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'Xuyuanp/nerdtree-git-plugin'
Plugin 'itchyny/lightline.vim'
Plugin 'mattn/emmet-vim'
Plugin 'altercation/vim-colors-solarized'
Plugin 'jiangmiao/auto-pairs'
Plugin 'kien/rainbow_parentheses.vim'
Plugin 'vim-syntastic/syntastic'
Plugin 'nvie/vim-flake8'
Plugin 'tpope/vim-dispatch'
Plugin 'https://github.com/StanAngeloff/php.vim.git'
Plugin 'joonty/vim-phpqa'
Plugin 'python-mode/python-mode'
Plugin 'maralla/completor.vim'
Plugin 'mhinz/vim-signify'
Plugin 'sudar/vim-arduino-syntax'
Plugin 'SirVer/ultisnips'
Plugin 'sudar/vim-arduino-snippets'
Plugin 'vim-scripts/loremipsum'
Plugin 'Valloric/YouCompleteMe'
call vundle#end()
filetype plugin indent on
set omnifunc=syntaxcomplete#Complete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment