Created
October 8, 2021 06:50
-
-
Save harplife/934fb66cc8f6492ed586fa404bdaa996 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Don't try to be vi compatible | |
set nocompatible | |
" Helps force plugins to load correctly when it is turned back on below | |
filetype off | |
"set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
"alternatively, pass a path where Vundle should install plugins | |
"call vundle#begin('~/some/path/here') | |
"let Vundle manage Vundle, required | |
Plugin 'gmarik/Vundle.vim' | |
"add all your plugins here (note older versions of Vundle | |
"used Bundle instead of Plugin) | |
" python-mode doesn't work.. | |
" Plugin 'klen/python-mode' | |
" youcompleteme doesn't work either.. | |
" Plugin 'valloric/youcompleteme' | |
" file explorer plugin | |
Plugin 'scrooloose/nerdtree' | |
Plugin 'scrooloose/syntastic' | |
" python style | |
Plugin 'nvie/vim-flake8' | |
" indentation | |
Plugin 'Yggdroot/indentLine' | |
"All of your Plugins must be added before the following line | |
call vundle#end() " required | |
filetype plugin indent on " required | |
" Turn on syntax highlighting | |
syntax on | |
" TODO: Pick a leader key | |
" let mapleader = "," | |
" Security | |
set modelines=0 | |
" Show line numbers | |
set number | |
" Show file stats | |
set ruler | |
" Blink cursor on error instead of beeping (grr) | |
" set visualbell | |
" Encoding | |
set encoding=utf-8 | |
" Whitespace | |
set wrap | |
set textwidth=79 | |
set formatoptions=tcqrn1 | |
set tabstop=2 | |
set shiftwidth=2 | |
set softtabstop=2 | |
set expandtab | |
set noshiftround | |
" Cursor motion | |
set scrolloff=3 | |
set backspace=indent,eol,start | |
set matchpairs+=<:> " use % to jump between pairs | |
runtime! macros/matchit.vim | |
" Move up/down editor lines | |
nnoremap j gj | |
nnoremap k gk | |
" Allow hidden buffers | |
set hidden | |
" Rendering | |
set ttyfast | |
" Status bar | |
set laststatus=2 | |
" Last line | |
set showmode | |
set showcmd | |
" Searching | |
nnoremap / /\v | |
vnoremap / /\v | |
set hlsearch | |
set incsearch | |
set ignorecase | |
set smartcase | |
set showmatch | |
map <leader><space> :let @/=''<cr> " clear search | |
" Remap help key. | |
inoremap <F1> <ESC>:set invfullscreen<CR>a | |
nnoremap <F1> :set invfullscreen<CR> | |
vnoremap <F1> :set invfullscreen<CR> | |
" Textmate holdouts | |
" Formatting | |
map <leader>q gqip | |
" Visualize tabs and newlines | |
set listchars=tab:▸\ ,eol:¬ | |
" Uncomment this to enable by default: | |
" set list " To enable by default | |
" Or use your leader key + l to toggle on/off | |
map <leader>l :set list!<CR> " Toggle tabs and EOL | |
" Color scheme (terminal) | |
set t_Co=256 | |
set background=dark | |
let g:solarized_termcolors=256 | |
let g:solarized_termtrans=1 | |
" put https://raw.github.com/altercation/vim-colors-solarized/master/colors/solarized.vim | |
" in ~/.vim/colors/ and uncomment: | |
" colorscheme solarized | |
au BufNewFile, BufRead *.py | |
\ set tabstop=4 | |
\ set softtabstop=4 | |
\ set shiftwidth=4 | |
\ set textwidth=79 | |
\ set expandtab | |
\ set autoindent | |
\ set fileformat=unix | |
" python-mode enable python3 | |
let g:pymode_python = 'python3.6' | |
" for fish shell | |
set shell=/bin/bash | |
map <C-w><up> :tabr<cr> | |
map <C-w><down> :tabl<cr> | |
map <C-w><left> :tabp<cr> | |
map <C-w><right> :tabn<cr> | |
" let NERDTreeChDirMode=2 | |
nmap <F6> :NERDTreeToggle<CR> | |
" autocmd BufWritePost *.py call flake8#Flake8() | |
set statusline+=%#warningmsg# | |
set statusline+=%{SyntasticStatuslineFlag()} | |
set statusline+=%* | |
let g:syntastic_always_populate_loc_list = 1 | |
let g:syntastic_auto_loc_list = 1 | |
let g:syntastic_check_on_open = 1 | |
let g:syntastic_check_on_wq = 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment