aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2019-11-14Remove mappings for Python filetype.jdhao
Use quickrun to execute Python source files.
2019-11-14Do not ignore PDF filesjdhao
2019-11-12Search selected region in visual modejdhao
2019-11-10Update plugin install logicjdhao
Only install plugins system-wide if the system is *nix system
2019-11-09Update plugin.vimjdhao
Change plugin installation directory based on whether we want to config neovim globally or locally.
2019-11-09Adjust certain optionsjdhao
2019-11-09Update init.vimjdhao
2019-11-09Update init.vimjdhao
2019-11-05Remove pumblend.jdhao
pumblend options does not work well for terminals which does not support true colors
2019-11-05Simplify the way to get correct python3_host_progjdhao
2019-11-05Change wildignore settingjdhao
2019-11-03Split titlestring for easier interpretationjdhao
2019-10-28Fix an issue with termguicolors optionjdhao
According to https://github.com/equalsraf/neovim-qt/issues/604, nvim-qt will set the termguicolors options when it is started. However, if we add `set notermguicolors` in init.vim, the nvim-qt setting will not take effect after nvim-qt is started. So we need to remove the `set notermguicolors` setting in the config.
2019-10-26Fix a bug about termguicolors optionjdhao
We can not detect whether nvim-qt is loaded when sourcing `init.vim`. If termguicolors option is not set, we use a better color (badwolf in this case). Gruvbox8 is terrible when termguicolors is not set.
2019-10-26Fix a bug about termguicolorsjdhao
If we use nvim-qt, the TERM env variable may be empty. We should check if we are using the GUI.
2019-10-24Do not use annoying visual bells.jdhao
2019-10-24Fix true color support issuejdhao
Some terminal, for example, xshell, does not support true colors. In this case, we should not set the termguicolors option.
2019-10-18Add README for setting up markdown2ctagsjdhao
2019-10-15Add markdown support for tagbarjdhao
2019-10-15Add spell wordsjdhao
2019-10-09Add link to wiki pagejdhao
2019-09-28Remove ambiwidth settingjdhao
ambiwidth setting gobbles color columns
2019-09-27Update init.vimjdhao
2019-09-27Fix a bug in sourcing vim files.jdhao
vim files such as 'variables.vim' under the same folder as init.vim can not be correctly sourced with `source somefile.vim`. Because source command is relative to the correct folder, you must specify the absolute path of vim script.
2019-09-26Split large nvim config into several files for easier managementjdhao
2019-09-25Update nvim and nvim-qt configjdhao
2019-09-21Update readmejdhao
2019-09-21Remove binary spell filejdhao
2019-09-21Do not push binary spell filesjdhao