Skip to content

Instantly share code, notes, and snippets.

@niconico25
Created February 14, 2019 17:54
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 niconico25/6f160ae3416afdc46aa8c0ffdceb2baf to your computer and use it in GitHub Desktop.
Save niconico25/6f160ae3416afdc46aa8c0ffdceb2baf to your computer and use it in GitHub Desktop.
set mouse=a
set clipboard+=unnamedplus
set runtimepath+=/Users/ユーザ名/.cache/dein/repos/github.com/Shougo/dein.vim
if dein#load_state('/Users/ユーザ名/.cache/dein')
call dein#begin('/Users/ユーザ名/.cache/dein')
call dein#add('/Users/ユーザ名/.cache/dein/repos/github.com/Shougo/dein.vim')
" ale に乗り換えたい...
call dein#add('scrooloose/syntastic')
" lsp に乗り換えたい...
call dein#add('Shougo/deoplete.nvim')
call dein#add('zchee/deoplete-jedi')
call dein#end()
call dein#save_state()
endif
let g:syntastic_python_checkers = ['pydocstyle', 'pycodestyle', 'pyflakes']
let g:deoplete#enable_at_startup = 1
let g:jedi#force_py_version = 3
let g:pymode_python = 'python3'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment