aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-01-12Remove textwidth for Markdownjdhao
2020-01-09Update plugins.vimjdhao
2020-01-09Update plugins.vimjdhao
2020-01-08Remove flake8 linter for Pythonjdhao
2020-01-07Use ALE for linting instead of Neomakejdhao
2020-01-06Update plugins.vimjdhao
2020-01-04Remove matrix since it is too slow on Macjdhao
2020-01-04Add the Matrix plugin for fun!jdhao
2020-01-04Update firenvim settingsjdhao
2020-01-01Revert change for Markdown filetypejdhao
2020-01-01Update options for Markdown filetypejdhao
2020-01-01Update firenvim settingjdhao
2020-01-01Update firenvim settingsjdhao
2020-01-01Add firenvimjdhao
2019-12-30Increase font size for fvimjdhao
2019-12-29Add toml supportjdhao
2019-12-29Update fvim settingsjdhao
See https://github.com/yatli/fvim/issues/108.
2019-12-27Update spelljdhao
2019-12-27Fix deoplete autocompletion issuejdhao
2019-12-26Add settings for fvimjdhao
2019-12-26Update Nvim_setup.shjdhao
2019-12-26Update leaderf ignore settings.jdhao
2019-12-26Update markdown2ctagsjdhao
2019-12-26Update doc on Nvim install and setupjdhao
2019-12-26Update documentationjdhao
2019-12-25Update leaderf settingsjdhao
2019-12-25Reduce timeoutlenjdhao
2019-12-24increase timeoutlenjdhao
2019-12-24Remove SimpylFoldjdhao
2019-12-24Add neoformatjdhao
2019-12-24Update leaderf settingjdhao
2019-12-24Update all.snippetsjdhao
2019-12-23Add emoji support.jdhao
2019-12-22Update Markdown snippetsjdhao
2019-12-21Update meta markdown snippetsjdhao
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-20Update all.snippetsjdhao
2019-12-19Remove unsuitable airline themesjdhao
2019-12-19Update markdown.snippetsjdhao
2019-12-19Update Markdown front matter snip triggerjdhao
2019-12-18Add markdown header snippetsjdhao
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-16Change plugin ale repojdhao
Plug ale has been transferred to a group.
2019-12-15Change conceal settings for Markdownjdhao
2019-12-13Update options.vimjdhao
2019-12-13Update options.vimjdhao
2019-12-11Update vim-plug install logicjdhao
2019-12-10Update plugin matchup settingjdhao
2019-12-09Merge branch 'master' of https://github.com/jdhao/nvim-configjdhao
2019-12-09Update system check methodjdhao
2019-12-09Fix an issue with AsyncRun.vimjdhao
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-09Fix asyncrun command output issue for Chinesejdhao
The command output returned by Windows system may not be encoded in utf-8 format. We need to set the format explicitly.