mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
Various small update
This commit is contained in:
parent
6d10ef8378
commit
a28c908c66
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
tags
|
tags
|
||||||
|
autoload/plug.vim
|
||||||
|
|||||||
2526
autoload/plug.vim
2526
autoload/plug.vim
File diff suppressed because it is too large
Load Diff
371676
dict/words
371676
dict/words
File diff suppressed because it is too large
Load Diff
32
init.vim
32
init.vim
@ -9,20 +9,21 @@
|
|||||||
" |___/ "
|
" |___/ "
|
||||||
" "
|
" "
|
||||||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" The ascii art above is generated using service provided on this webpage:
|
" The above ASCII art is generated using service provided in this webpage:
|
||||||
" http://tinyurl.com/y6szckgd
|
" http://tinyurl.com/y6szckgd.
|
||||||
|
|
||||||
"{ Header and Licence
|
"{ Header and Licence
|
||||||
"{{ header info
|
"{{ header info
|
||||||
" Description: This is my Nvim configuration which supports Mac, Linux and
|
" Description: This is my Neovim configuration which supports Mac, Linux and
|
||||||
" Windows, with various plugins configured. This configuration evolves as I
|
" Windows, with various plugins configured. This configuration evolves as I
|
||||||
" learn more about Nvim and becomes more proficient in using Nvim. Since this
|
" learn more about Nvim and becomes more proficient in using Nvim. Since it is
|
||||||
" configuration file is very long (more than 1000 lines!), you should read it
|
" very long (more than 1000 lines!), you should read it carefully and
|
||||||
" carefully and only take the settings and options which suits you. I would
|
" take only the settings and options which suits you. I would not recommend
|
||||||
" not recommend downloading this file and replace your own init.vim. Good
|
" downloading this file and replace your own init.vim. Good configurations are
|
||||||
" configurations are built over time and take your time to polish.
|
" built over time and take your time to polish.
|
||||||
" Author: jdhao (jdhao@hotmail.com).
|
" Author: Jie-dong Hao
|
||||||
" Update: 2019-09-12 19:54:07+0800
|
" Email: jdhao@hotmail.com
|
||||||
|
" Update: 2019-09-16 11:49:42+0800
|
||||||
"}}
|
"}}
|
||||||
|
|
||||||
"{{ License: MIT License
|
"{{ License: MIT License
|
||||||
@ -221,7 +222,7 @@ set pumblend=5 " Pesudo blend effect for popup menu
|
|||||||
set complete+=k,kspell complete-=w complete-=b complete-=u complete-=t
|
set complete+=k,kspell complete-=w complete-=b complete-=u complete-=t
|
||||||
|
|
||||||
" Dictionary files for different systems
|
" Dictionary files for different systems
|
||||||
let g:MY_DICT = stdpath('config') . '/dict/words'
|
let g:MY_DICT = expand(stdpath('config') . '/dict/words')
|
||||||
let &dictionary = &dictionary . ',' . g:MY_DICT
|
let &dictionary = &dictionary . ',' . g:MY_DICT
|
||||||
|
|
||||||
set spelllang=en,cjk " Spell languages
|
set spelllang=en,cjk " Spell languages
|
||||||
@ -480,7 +481,7 @@ augroup auto_read
|
|||||||
augroup END
|
augroup END
|
||||||
"}
|
"}
|
||||||
|
|
||||||
"{ Plugin installation part
|
"{ Plugin installation
|
||||||
"{{ Vim-plug Install and related settings
|
"{{ Vim-plug Install and related settings
|
||||||
|
|
||||||
" Auto-install vim-plug on different systems if it does not exist.
|
" Auto-install vim-plug on different systems if it does not exist.
|
||||||
@ -506,12 +507,7 @@ else
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
" Set up directory to install the plugins based on the platform
|
" Set up directory to install the plugins based on the platform
|
||||||
if has('win32')
|
let g:PLUGIN_HOME=expand(stdpath('data') . '/plugged')
|
||||||
let g:PLUGIN_HOME=expand('~/AppData/Local/nvim/plugged')
|
|
||||||
else
|
|
||||||
let g:PLUGIN_HOME=expand('~/.local/share/nvim/plugged')
|
|
||||||
endif
|
|
||||||
|
|
||||||
"}}
|
"}}
|
||||||
|
|
||||||
"{{ Autocompletion related plugins
|
"{{ Autocompletion related plugins
|
||||||
|
|||||||
@ -12,3 +12,7 @@ snippet print "Print value of some variable"
|
|||||||
print("$1".format($2))
|
print("$1".format($2))
|
||||||
$0
|
$0
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
|
snippet impa "import FOO as BAR" b
|
||||||
|
import ${1:FOO} as ${2:BAR}
|
||||||
|
endsnippet
|
||||||
|
|||||||
@ -1,35 +1,54 @@
|
|||||||
plugin
|
#eovim
|
||||||
Neovim
|
#eovim/!
|
||||||
neovim
|
AED
|
||||||
plugins
|
|
||||||
Builtin
|
Builtin
|
||||||
builtin
|
CER
|
||||||
Pandoc
|
DT
|
||||||
vim
|
Deoplete
|
||||||
GitHub
|
Deteval
|
||||||
nvim
|
Esc
|
||||||
vim
|
Exif
|
||||||
vim
|
|
||||||
vim
|
|
||||||
deoplete
|
|
||||||
YouCompleteMe
|
|
||||||
deoplete
|
|
||||||
jedi
|
|
||||||
PyTorch
|
|
||||||
workflow
|
|
||||||
JPEG
|
|
||||||
PIL
|
|
||||||
Vimtex
|
|
||||||
vimtex
|
|
||||||
autocompletion
|
|
||||||
Ultisnips
|
|
||||||
vim
|
|
||||||
env
|
|
||||||
ctags
|
|
||||||
gutentags
|
|
||||||
repo
|
|
||||||
vim
|
|
||||||
GUIs
|
GUIs
|
||||||
|
GhostText
|
||||||
|
GitHub
|
||||||
|
ICDAR
|
||||||
|
IoU
|
||||||
|
JPEG
|
||||||
|
Neovim
|
||||||
|
PIL
|
||||||
|
POSIX
|
||||||
|
Pandoc
|
||||||
|
Plugin
|
||||||
|
Plugins
|
||||||
|
PyTorch
|
||||||
|
RCTW
|
||||||
|
Ultisnips
|
||||||
|
VOC
|
||||||
|
YouCompleteMe
|
||||||
|
autocompletion
|
||||||
|
builtin
|
||||||
config
|
config
|
||||||
tabline
|
ctags
|
||||||
|
deoplete
|
||||||
docstrings
|
docstrings
|
||||||
|
env
|
||||||
|
epub
|
||||||
|
gutentags
|
||||||
|
inline
|
||||||
|
jedi
|
||||||
|
linting
|
||||||
|
mobi
|
||||||
|
neovim
|
||||||
|
nvim
|
||||||
|
pdflatex
|
||||||
|
plugin
|
||||||
|
plugins
|
||||||
|
repo
|
||||||
|
smartphone
|
||||||
|
tabline
|
||||||
|
tex
|
||||||
|
textline
|
||||||
|
usepackage
|
||||||
|
vim
|
||||||
|
vimtex
|
||||||
|
workflow
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user