-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.vim
More file actions
55 lines (50 loc) · 2.01 KB
/
init.vim
File metadata and controls
55 lines (50 loc) · 2.01 KB
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
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" IDIOMATIC PROGRAMMERS VIM CONFIG "
" "
" # Install vim plug "
" sh -c 'curl -fLo ~/.local/share/nvim/site/autoload/plug.vim \ "
" --create-dirs \ "
" https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' "
" "
" # Install Plugins "
" "
" # Install Coc plugins "
" 1. coc-json "
" 2. coc-python "
" 3. coc-tsserver "
" 4. coc-htmldjango "
" "
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set number
set nocompatible
filetype off
call plug#begin('~/.config/nvim/plugged')
Plug 'tpope/vim-fugitive'
Plug 'preservim/nerdtree'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'mattn/emmet-vim'
Plug 'itchyny/lightline.vim'
Plug 'ap/vim-css-color'
Plug 'joshdick/onedark.vim'
call plug#end()
colorscheme onedark
map <silent> <C-n> :NERDTreeFocus<CR>
filetype plugin indent on
syntax on
set colorcolumn=80
set background=dark
highlight ColorColumn ctermbg=0 guibg=lightgrey
set nowrap
set smartcase
set hlsearch
set noerrorbells
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set smartindent
set smarttab
set noshowmode
set noshowcmd
set shortmess+=F