aboutsummaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2021-10-18replace vim-sneak with hop.nvimjdhao
2021-10-18nvim-notify updatejdhao
2021-10-18remove unused mappingjdhao
2021-10-17update leaderf confjdhao
2021-10-16Add warning for deprecated mappingsjdhao
2021-10-16re-add number to spellsuggestjdhao
Adding number to spellsuggest slows down neovim/vim dramatically previously, see jdhao/nvim-config@84ddd0c5f, and this issue is fix in neovim/neovim@94cb3b4b35.
2021-10-16fix error caused by removal of vim-auto-savejdhao
2021-10-16change LeaderF mappingsjdhao
Make the mapping consistent
2021-10-16fix nightfox colorscheme pathjdhao
2021-10-15refactor: load colorschemes randomlyjdhao
In Emacs, there is `seq-random-elt` which randomly selects an element from a sequence. We mimic it here in Neovim. Ref: https://www.gnu.org/software/emacs/manual/html_node/elisp/Sequence-Functions.html.
2021-10-11update mappingjdhao
2021-10-11do not shadow default keys in normal modejdhao
It causes delay (we have to wait timeoutlen milliseconds) when we want to use the key's original command.
2021-10-11timeoutjdhao
2021-10-11update ignore filesjdhao
2021-10-06update theme doom-one settingsjdhao
2021-09-09update registers.nvim settingsjdhao
2021-09-06update wildignore and backupskip settingsjdhao
2021-08-27Colorscheme plugins as opt pluginsjdhao
2021-08-26update leaderf settingsjdhao
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-16update vim-airline settingsjdhao
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-13Use barbar.nvim for tablinejdhao
2021-08-09update vim-airline settingsjdhao
2021-08-08Neovim --> Nvimjdhao
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-07Move packer compile autocmd to new placejdhao
2021-08-07refactor: set all custom highlight in one functionjdhao
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-05update airlinethemesjdhao
+ Remove jellybeans and luna (they look terrible for ZOC terminal) + Add more themes
2021-08-05Use nvim-notify for showing messagesjdhao
2021-08-04Remove neodark themejdhao
It does not have good highlight for Markdown links.
2021-08-04update vista settingsjdhao
Remove double click mapping since it is added natively by vista
2021-08-02Add more mappingsjdhao
Credit: https://www.youtube.com/watch?v=hSHATqh8svM
2021-08-01update wilder.nvim settingsjdhao
2021-08-01ALE is not needed (use nvim-lsp instead)jdhao
2021-08-01Add wilder.nvim for cmdline auto-completionjdhao
2021-07-30update airline themesjdhao
2021-07-30Add doom-one colorschemejdhao
2021-07-27update fugitive settingsjdhao
2021-07-24Refactor: use a unified log functionjdhao
2021-07-24Simplify file reload logicjdhao
2021-07-24Clean the codejdhao
2021-07-24Remove plugin vim-titlecasejdhao
I cann't even remember when I used it last time.
2021-07-19Move options to one placejdhao