aboutsummaryrefslogtreecommitdiff
path: root/lua/config
AgeCommit message (Collapse)Author
2021-10-21disable autosave for plugins.luajdhao
2021-10-21update bufferline confjdhao
2021-10-20disable auto-preview of bqfjdhao
2021-10-20Only use indent-blankline on normal modejdhao
In insert mode, it is distracting for editing.
2021-10-19update cmp settingsjdhao
2021-10-18replace vim-sneak with hop.nvimjdhao
2021-10-18use local variablejdhao
2021-10-18nvim-notify updatejdhao
2021-10-18transition from nvim-compe to nvim-cmpjdhao
2021-10-17which-key confjdhao
2021-10-17update which-key.nvim confjdhao
2021-10-17remove registers.nvimjdhao
Which-key.nvim can show register content too, with much more features. I found this info on https://toroid.org/modern-neovim.
2021-10-17remove some dead mappingsjdhao
I am not really sure what they do anyway.
2021-10-16update indentBlankline confjdhao
2021-10-16replace vim-auto-save with AutoSave.nvimjdhao
2021-10-10update which-key confjdhao
2021-10-07add which-key.nvimjdhao
2021-09-23show border for diagnostics floating windowjdhao
2021-09-09update registers.nvim settingsjdhao
2021-09-01update zen-mode.nvim settingsjdhao
FileType autocmd may be triggered unexpectedly so that ZenMode command is called at the wrong time.
2021-08-30Add plugin zen-mode.nvimjdhao
2021-08-27update bufferline.nvim settingsjdhao
2021-08-23Add treesitter parser for vim script againjdhao
2021-08-22Remove vim parser for treesitterjdhao
It is not yet usable: the highlighting is not good compared to regex based highlighting.
2021-08-22Enable treesitter highlight for Vim script, closes #17jdhao
2021-08-21chore: nvim-bufferline.lua has been renamed to bufferline.nvimjdhao
2021-08-20Reduce timeout for nvim-notifyjdhao
2021-08-18Format with styluajdhao
2021-08-17update neoscroll configjdhao
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-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-13Use barbar.nvim for tablinejdhao
2021-08-12refactor: rename on_attach to custom_attachjdhao
2021-08-12Add sumneko_lua LSPjdhao
2021-08-09update nvim-bqf settingsjdhao
2021-08-07chore: formatting and fix spell errorsjdhao
2021-07-30chore: remove trailing sapcesjdhao
2021-07-29update nvim-lsp settingsjdhao
We shouldn't let the diagnostic window perstist forever. Close the diagnostic windows when certain events happen.
2021-07-29use vim.cmd instead of vim.api.nvim_execjdhao
2021-07-20update lsp hover window border confjdhao
Floating window border supports rounded style by default, no need to use customized one.
2021-07-17More update on nvim-lsp configjdhao
Change border from sharp corner to curved corner.
2021-07-17Update nvim-lspconfig settingsjdhao
1. Customize document hover window border color. 2. Show also the source that generates a certain diagnostic message.
2021-07-15Use pylsp instead of pylsjdhao
It seems that pyls, the original python language server has lost its momentum, and pylsp is a community driven fork of pyls. So nvim-lspconfig has dropped support for pyls in https://github.com/neovim/nvim-lspconfig/pull/1074. See also https://github.com/palantir/python-language-server/issues/935 and https://github.com/python-lsp/python-lsp-server/issues/27.
2021-07-14Use lua to configure lua pluginsjdhao
2021-07-13update nvim-lsp configjdhao
Add mapping for LSP code actions and remove useless mappings.
2021-07-12Add treesitterjdhao