-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.vim
75 lines (54 loc) · 1.37 KB
/
init.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
""""""""""""""""""""""""""""""""""""""""""""""""""
" Required neovim, jedi to be installed by pip; "
""""""""""""""""""""""""""""""""""""""""""""""""""
call plug#begin()
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
" NerdTree and plugins "
Plug 'scrooloose/nerdtree'
Plug 'scrooloose/nerdcommenter'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
" Git plugins "
Plug 'airblade/vim-gitgutter'
Plug 'tpope/vim-fugitive'
" Python plugins "
Plug 'davidhalter/jedi-vim'
" Autocompletion and autoformat "
Plug 'sheerun/vim-polyglot'
Plug 'neomake/neomake'
Plug 'w0rp/ale'
Plug 'Chiel92/vim-autoformat'
" Frotran plugins "
Plug 'rudrab/vimf90'
" Colorschemes "
Plug 'morhetz/gruvbox'
Plug 'arcticicestudio/nord-vim'
call plug#end()
filetype plugin indent on
"if has('termguicolors')
" set termguicolors
"endif
syntax on
syntax enable
set nocompatible
set t_Co=256
set number
"set relativenumber
set ruler
set mouse=a
set encoding=utf-8
set noswapfile
set autoindent
filetype indent on
" Search configuration;
set ignorecase
" Autoformat and autocomplete settings;
noremap <F3> :Autoformat<CR>
" Ale settings;
let g:ale_lint_on_enter = 0
let g:ale_lint_on_text_changed = 'never'
let g:ale_linters = {'python': ['flake8']}
let g:neomake_python_enabled_makers = ['pylint']
" Edotpr colorschemes; Uncomment required colorscheme; "
" colorscheme gruvbox
" colorscheme nord