aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-08-21chore: nvim-bufferline.lua has been renamed to bufferline.nvimjdhao
2021-08-21Do not auto-pair <> for C++jdhao
2021-08-20Reduce timeout for nvim-notifyjdhao
2021-08-18Use nvim-hlslens instead of vim-anzujdhao
2021-08-18update optionjdhao
2021-08-18Add colorscheme everforestjdhao
2021-08-18Format with styluajdhao
2021-08-17Try chadtree :) fast as fuck?jdhao
2021-08-17update neoscroll configjdhao
2021-08-16update vim-airline settingsjdhao
2021-08-15Update READMEjdhao
2021-08-15Use neoscroll instead of vim-smoothiejdhao
2021-08-15Change bufferline plugin to nvim-bufferlinejdhao
It looks better than barbar.nvim, IMO.
2021-08-14Use proper true or false value for boolean variablesjdhao
In lua, 0 and empty string is true, which is counter-intuitive and different from vim script. So we need to use proper boolean type for vim script global variables, instead of numbers.
2021-08-14refactor: change file namejdhao
2021-08-14update barbar.nvim settingsjdhao
2021-08-14update treesitter settingsjdhao
TS highlighting for bash is not so good.
2021-08-13update barbar.nvim settingsjdhao
2021-08-13feat: make :edit command supports file glob patternsjdhao
2021-08-13Use barbar.nvim for tablinejdhao
2021-08-13Fix: remove loggingjdhao
2021-08-13Add Redir command to capture command output easilyjdhao
2021-08-12Use delimitMate instead of auto-pairsjdhao
2021-08-12refactor: rename on_attach to custom_attachjdhao
2021-08-12Add sumneko_lua LSPjdhao
2021-08-09update spell filejdhao
2021-08-09Move ftplugin to after/ftpluginjdhao
Make my own settings have the final say on how a filetype should behave, instead of some 3rd party plugins.
2021-08-09update nvim-bqf settingsjdhao
2021-08-09update vim-airline settingsjdhao
2021-08-09update vim-anzu and vim-cool settingsjdhao
We shouldn't set them as opt, otherwise *, and n , N etc. do not work in normal mode, unless we activate them on CmdlineEnter events.
2021-08-09Add more resourcesjdhao
2021-08-08Add plugin nvim-bqfjdhao
2021-08-08Neovim --> Nvimjdhao
2021-08-08change plugin load conditionjdhao
vim-searchlight needs to work when we press n or N or * etc, not just after pressing / and ?.
2021-08-08Use custom git branch name for vim-airlinejdhao
Airline relies on fugitive to get the branch name, but fugitive is conditionally loaded. So the branch name is not shown. We need to provide our own function to get the branch name.
2021-08-08Change plugin load conditionjdhao
2021-08-08Change ultisnips load conditionjdhao
Benefit of doing this: + No change of cursor line position after entering insert mode. Previous, if we load ultisnips on InsertEnter, the cursor line will moved automatically (e.g., if cursor line is on bottom of the screen, when we enter insert mode, now we are at the middle of the screen, like Ctrl-E is used before entering insert mode), which is really annoying! + We can see the snippets in nvim-compe auto-completion menu. Previously, the snippets are not shown on the nvim-compe completion menu (snippet expansion works though, it is just we can not see snippets in the completion menu), possibly due to the loading order of ultisnips and nvim-compe, because we load them both on event InsertEnter. After changing ultisnips to a start plugin, this issue is gone.
2021-08-07Remove image folderjdhao
2021-08-07Better way to call lua function inside vim scriptjdhao
2021-08-07Move packer compile autocmd to new placejdhao
2021-08-07refactor: set all custom highlight in one functionjdhao
2021-08-07More demojdhao
2021-08-07Update READMEjdhao
2021-08-07Update READMEjdhao
2021-08-07chore: formatting and fix spell errorsjdhao
2021-08-07Fix: the loading condition for fugitive is wrongjdhao
We should load fugitive in the following two situations: + When we open nvim in a Git repository + When we are inside nvim and change the working directory to a Git reposity
2021-08-06Add installation script for Windows, update docjdhao
2021-08-05update airlinethemesjdhao
+ Remove jellybeans and luna (they look terrible for ZOC terminal) + Add more themes
2021-08-05Use Hack nerdfonts for GUI nvimjdhao
2021-08-05update READMEjdhao