aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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.
2019-12-09Update spell settingsjdhao
2019-12-08Add Google Vimscript style guidejdhao
2019-12-08Turn global variable to localjdhao
A variable without scope is global by default, see http://rbtnn.hateblo.jp/entry/2014/12/28/010913
2019-12-06Update spelljdhao
2019-12-06Add mapping for running Python script asynchronouslyjdhao
2019-12-06Add async support for external commandjdhao
Use asyncrun.vim for now. May switch to Dispatch later.
2019-12-05Add snippet for Pythonjdhao
2019-12-04Show current search item in different colorjdhao
2019-12-03Update Markdown snippetsjdhao
2019-12-03Update semshi install commandjdhao
It seems that using for option for vim-plug will cause problem. Ref: https://github.com/numirias/semshi/issues/59
2019-12-02Update random airline theme candidatejdhao
2019-11-30Do not use colorcolumn for text filetypejdhao
2019-11-30Merge branch 'master' of https://github.com/jdhao/nvim-configjdhao
2019-11-30Open nvim config in a different tabjdhao
2019-11-29Disable loading matchit pluginjdhao
Add the global variable identifier to loaded_matchit variable
2019-11-29Replace nerdcommenter with commentaryjdhao
2019-11-28Remove some color themesjdhao
2019-11-28Remove vim-quickrunjdhao
2019-11-27Reduce nvim startup timejdhao
2019-11-27Update mouse optionjdhao
Click mouse in normal mode will easily select words and enter visual mode, which is annoying. So disable mouse in visual mode.
2019-11-25Fix a bug about Python 3 pathjdhao
On Windows, there is not python3.exe symlinked to python.exe when you use Anaconda 3. There is just one python.exe, which will start Python 3. So we should check the existence of python instead of python3. It is the user's responsibility to make sure that Python 3 is installed instead of Python 2.
2019-11-23Change netrw settingsjdhao
2019-11-22Update READMEjdhao
2019-11-22Update vim-pandoc-syntax settingjdhao
2019-11-22Update READMEjdhao
2019-11-22Explicitly use Python3jdhao
2019-11-20Use silent mappingsjdhao
2019-11-20Remove fzf and use leaderf insteadjdhao
2019-11-19The mouse feature is assumed by default.jdhao
2019-11-19Update plugin comfortable-motion settingsjdhao
2019-11-19Update option synmaxcoljdhao
The synmaxcol option must be set to a relatively large value, or syntax highlighting may not work correctly after long lines.
2019-11-16Update backupcopy optionjdhao
2019-11-16Update backup settingsjdhao
2019-11-14Enable mouse in insert modejdhao