aboutsummaryrefslogtreecommitdiff
path: root/lua
AgeCommit message (Collapse)Author
2023-09-05update plugin lazy loading eventsjdhao
2023-09-01fix bufferline loading issuejdhao
2023-09-01fix hlslens issue when no pattern is foundjdhao
The captured error message is not correct before.
2023-09-01fix loading order of nvim-cmp and nvim-lspjdhao
2023-09-01Optimize plugin loading speedjdhao
2023-09-01fix multi visual line delete issuejdhao
For TextYankPost event, it includes both yank and delete, we should only restore cursor position for yank, not for delete. Otherwise, it messes up with text deletion when you visually select multiple lines and delete them. See also issue reported here: https://github.com/jdhao/nvim-config/pull/222#issuecomment-1698634645
2023-08-28fix multi-line yank issue, close #220jdhao
The previous way of keep the cursor while yanking is not perfect. It will break multi-line yank (`{count}yy`).
2023-08-27feat: switch from packer.nvim to lazy.nvimjdhao
2023-08-23Update condition for installing vim-xkbswitchjdhao
2023-08-14fix nvimtree conf, close #215jdhao
2023-08-09update git-linker confjdhao
1. Add configuration for azure devops 2. change the mappings slightly
2023-07-28feat: move lua conf under lua directoryjdhao
2023-07-25fix: conf is not localjdhao
2023-07-25feat: support venv in Mypyjdhao
Specify the correct python executable path for mypy to work well.
2023-07-25fix: missing nerdfontsjdhao
Since wezterm upgrade its support for Nerd Fonts 3.0, we should update the codepoints used for some of the Unicode Icons. Their code points are changed due to breaking changes in Nerd Fonts.
2023-07-22feat: update diagnostic mappingsjdhao
Use separate key mappings to show diagnostics for the current buffer and all opened files.
2023-07-22feat: update pylsp confjdhao
1. support using black as formatter 2. replace obsolete pyls-isort with maintained ones
2023-07-22feat: add treesitter tomljdhao
2023-07-20fix: move location indication to the right of statuslinejdhao
2023-07-20feat: update diagnostic position in statuslinejdhao
Do not show it in far right, move it to the left side for easier visibility.
2023-06-17use legacy version of fidget for nowjdhao
2023-06-13Add folding support for JSON filesjdhao
2023-05-22update conf for nvim-dashboardjdhao
2023-05-07remove impatient.nvimjdhao
It is not needed since nvim 0.9.0
2023-04-17update nvim-tree confjdhao
2023-04-17Merge pull request #187 from mr-cal/nvim-tree-updatejdhao
nvim-tree: fix shortcut and repo
2023-04-08bump to nvim version 0.9.0 (#188)jdhao
2023-04-05nvim-tree: update other referencesCallahan Kovacs
Signed-off-by: Callahan Kovacs <callahankovacs@gmail.com>
2023-03-30nvim-tree: use api and new repository urlCallahan Kovacs
Signed-off-by: Callahan Kovacs <callahankovacs@gmail.com>
2023-03-13fix: omit the clangd missing message, close #180 (#186)jdhao
It is not necessary to install clangd if the user does not use neovim with CPP/C.
2023-02-16refactor: lua language server rename (#185)jdhao
The lua language server from sumneko had changed its repo and created a new organizational repo. See also https://github.com/neovim/nvim-lspconfig/pull/2439.
2022-12-14use yanky.nvim to replace vim-yoink (#168)jdhao
2022-11-28Add ltex-ls support to lsp. (#166)bldur
* Add ltex-ls support to lsp. Co-authored-by: bldur (https://github.com/bldur)
2022-11-22fix: cmp-omni messes with the lsp completionjdhao
If we use cmp-omni and lsp together, it seems that it will mess the autocompletion. So we only use it with tex file, where lsp in not used.
2022-11-16update colorscheme listjdhao
- remove other gruvbox variant - remove doom-one casue it has bugs - add more colorschemes
2022-11-15chore: relax vimtex install conditionjdhao
2022-11-10chore: update gitsigns highlightjdhao
2022-11-07fix: make xkbswitch work on mac M1 CPUjdhao
For the details, see https://jdhao.github.io/2021/02/25/nvim_ime_mode_auto_switch/.
2022-11-01remove smooth scrolljdhao
I do not really need it.
2022-11-01chore: add notification for packer compilejdhao
Also move the autocmd location.
2022-10-23refactor: use local diagnostic modulejdhao
2022-10-16remove vim-jsonjdhao
rarely used and it changes the conceal settings
2022-10-16refactor: make packer installation a functionjdhao
2022-10-15replace more viml with native lua codejdhao
2022-10-15update nvim-cmp lsp confjdhao
2022-10-05remove vim-asteriskjdhao
The * can now search selected text by default. The cursor stay feature can also be simulated.
2022-10-04nvim 0.8 updatejdhao
2022-10-04update markdown-preview.nvim install methodjdhao
2022-09-28update repo link for transferred pluginsjdhao
2022-09-28update conf related to firenvimjdhao
1. Change autocmd for buffers started by firenivm, it seems that BufNewFile does not work as intended, in contrast, BufEnter, BufRead, BufWinEnter seem to work. 2. Disable several plugins if we are using firenvim, these plugins include dashboard-nvim, lualine, bufferline.nvim