1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

137 Commits

Author SHA1 Message Date
jdhao
4d20abd69f
Update plugins.vim 2020-01-09 14:23:27 +08:00
jdhao
76834bd25e
Remove flake8 linter for Python 2020-01-08 16:21:32 +08:00
jdhao
e729604b9e
Use ALE for linting instead of Neomake 2020-01-07 17:43:06 +08:00
jdhao
3b161bd281
Update plugins.vim 2020-01-06 14:33:08 +08:00
jdhao
bc955bfe74 Remove matrix since it is too slow on Mac 2020-01-04 22:28:32 +08:00
jdhao
69565e989d
Add the Matrix plugin for fun! 2020-01-04 15:11:42 +08:00
jdhao
626b28db11
Update firenvim settings 2020-01-04 13:29:56 +08:00
jdhao
5c70859a1a
Revert change for Markdown filetype 2020-01-01 18:57:53 +08:00
jdhao
0538162c4d
Update options for Markdown filetype 2020-01-01 17:43:06 +08:00
jdhao
f16ae086ad
Update firenvim setting 2020-01-01 17:30:16 +08:00
jdhao
3aa2a14c48
Update firenvim settings 2020-01-01 17:29:26 +08:00
jdhao
1d0b860dda
Add firenvim 2020-01-01 13:14:48 +08:00
jdhao
4c7364b84f
Increase font size for fvim 2019-12-30 14:33:04 +08:00
jdhao
56b28dcfbe Add toml support 2019-12-29 19:40:49 +08:00
jdhao
507e476161
Update fvim settings
See https://github.com/yatli/fvim/issues/108.
2019-12-29 01:40:08 +08:00
jdhao
fed0acbe72 Update spell 2019-12-27 01:22:53 +08:00
jdhao
fdf24f409c Fix deoplete autocompletion issue 2019-12-27 01:22:34 +08:00
jdhao
ec28139f02
Add settings for fvim 2019-12-26 20:45:37 +08:00
jdhao
e79c7b846c
Update Nvim_setup.sh 2019-12-26 19:42:30 +08:00
jdhao
99de9cd88e
Update leaderf ignore settings. 2019-12-26 15:31:29 +08:00
jdhao
66d8c10f4d Update markdown2ctags 2019-12-26 01:09:18 +08:00
jdhao
1dcbc1ae18 Update doc on Nvim install and setup 2019-12-26 01:07:49 +08:00
jdhao
492a6d7a2f Update documentation 2019-12-26 00:40:26 +08:00
jdhao
c225fb0003
Update leaderf settings 2019-12-25 19:53:20 +08:00
jdhao
79e08d64a4 Reduce timeoutlen 2019-12-25 00:24:21 +08:00
jdhao
75c6e5396c increase timeoutlen 2019-12-24 23:57:15 +08:00
jdhao
5c9bfa3dca Remove SimpylFold 2019-12-24 23:51:00 +08:00
jdhao
cc95d4b47b Add neoformat 2019-12-24 23:48:22 +08:00
jdhao
ceef889448
Update leaderf setting 2019-12-24 22:06:33 +08:00
jdhao
c5d6ab8f93
Update all.snippets 2019-12-24 21:45:39 +08:00
jdhao
3e4b3372c7
Add emoji support. 2019-12-23 18:15:42 +08:00
jdhao
61ac9785cd Update Markdown snippets 2019-12-22 13:47:58 +08:00
jdhao
3fdf189471
Update meta markdown snippets
The original snippet use vim interpolation and the date keeps changing while we are inside the
snippet region, which is not desired. According to https://www.youtube.com/watch?v=JJQYwt6Diro,
we can use Python interpolation and check if snip.c  is empty to see if the interpolation has been finished.
If the interpolation has finished (snip.c is empty in this condition), the date will be fixed and does not change
when we are inside the snippet region.
2019-12-21 20:48:02 +08:00
jdhao
37498210ba
Update all.snippets 2019-12-20 11:45:34 +08:00
jdhao
1d3b488e7a
Remove unsuitable airline themes 2019-12-19 21:03:10 +08:00
jdhao
54e03e5bfc
Update markdown.snippets 2019-12-19 11:24:48 +08:00
jdhao
a5be915ced Update Markdown front matter snip trigger 2019-12-19 00:53:21 +08:00
jdhao
d5392b1054
Add markdown header snippets
Now we can type h1, h2, ..., h6 and press <Tab> to generate header of corresponding
level. It is more intuitive than vim-snippets's default snippets for headers, i.e., sec, ssec,
and so on.
2019-12-18 21:07:59 +08:00
jdhao
6313d05fc4
Change plugin ale repo
Plug ale has been transferred to a group.
2019-12-16 20:46:59 +08:00
jdhao
b39a2d5a8a Change conceal settings for Markdown 2019-12-15 18:43:06 +08:00
jdhao
f9ff9bb6eb
Update options.vim 2019-12-13 13:28:12 +08:00
jdhao
15a7401a7a
Update options.vim 2019-12-13 13:16:21 +08:00
jdhao
942109634a
Update vim-plug install logic 2019-12-11 21:18:43 +08:00
jdhao
f225543f20
Update plugin matchup setting 2019-12-10 10:18:34 +08:00
jdhao
9d85a46383 Merge branch 'master' of https://github.com/jdhao/nvim-config 2019-12-09 23:22:04 +08:00
jdhao
62d8266f07 Update system check method 2019-12-09 23:21:28 +08:00
jdhao
5771a86c0d
Fix an issue with AsyncRun.vim
Change the output of Python from Buffered to Unbuffered so that we can see the command output
immediately instead of waiting for the command to finish to see the output.
See https://github.com/skywind3000/asyncrun.vim/wiki/FAQ#cant-see-the-realtime-output-when-running-a-python-script
and https://stackoverflow.com/questions/107705/disable-output-buffering.
2019-12-09 16:22:19 +08:00
jdhao
417fb450a2
Fix asyncrun command output issue for Chinese
The command output returned by Windows system may not be encoded in utf-8 format.
We need to set the format explicitly.
2019-12-09 16:19:36 +08:00
jdhao
c205ac6bca
Update spell settings 2019-12-09 13:17:53 +08:00
jdhao
0e89d956fd Add Google Vimscript style guide 2019-12-08 23:48:38 +08:00