Created
June 5, 2020 21:19
-
-
Save Foolson/3ece31e7b3c6a0d4995605d4268e6d5b to your computer and use it in GitHub Desktop.
~/.config/nvim/init.vim
This file contains hidden or 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
call plug#begin('~/.vim/plugged') | |
Plug 'ncm2/ncm2' | |
Plug 'roxma/nvim-yarp' | |
Plug 'ncm2/ncm2-bufword' | |
Plug 'ncm2/ncm2-path' | |
Plug 'ncm2/ncm2-jedi' | |
Plug 'Yggdroot/indentLine' | |
Plug 'dense-analysis/ale' | |
call plug#end() | |
autocmd BufEnter * call ncm2#enable_for_buffer() | |
set completeopt=noinsert,menuone,noselect | |
let g:ale_linters = {'python': ['flake8']} | |
filetype plugin indent on | |
set number |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment