-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
67 lines (51 loc) · 1.49 KB
/
.vimrc
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
" show line numbers
set number
" use relative line numbers
set relativenumber
" set colorscheme
colorscheme elflord
" show a visual line under the cursor's current line
set cursorline
" make invisible characters visible
set listchars=tab:▸\ ,eol:¬
set list
" This part below does not appear to work
"highlight NonText guifg=#4a4a59
highlight NonText guifg=#FC4806
highlight SpecialKey guifg=#FC4806
"highlight SpecialKey guifg=#4a4a59
" Custom key mappings created by Scott J
nnoremap <silent> <F5> :w<CR>:!%:p<CR>
" set tabs to have 4 spaces
set tabstop=4
set softtabstop=4
set shiftwidth=4
" show the matching part of the pair for [] {} and ()
set showmatch
" Required setting for vimwiki
syntax on
set nocompatible
filetype off
filetype plugin on
"set rtp+=~/.vim/bundle/Vundle.vim
"call vundle#begin()
" let Vundle manage Vundle required!
"Plugin 'VundleVim/Vundle.vim'
"
"Plugin 'Valloric/YouCompleteMe'
"Plugin 'vimwiki/vimwiki'
"Plugin 'godlygeek/tabular'
"Plugin 'plasticboy/vim-markdown'
"
"call vundle#end()
"Trying alternate Plugin Manager 'Vim-Plug'
call plug#begin('~/.vim/plugged')
Plug 'Valloric/YouCompleteMe'
Plug 'vimwiki/vimwiki'
Plug 'godlygeek/tabular'
Plug 'plasticboy/vim-markdown'
Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }, 'for': ['markdown', 'vim-plug']}
"Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app && yarn install' }
call plug#end()
filetype plugin indent on
let g:vimwiki_list = [{'path': '~/vimwiki/', 'syntax': 'markdown', 'ext': '.md'}]