| Age | Commit message (Collapse) | Author |
|
Floating window border supports rounded style by default, no need to use
customized one.
|
|
|
|
VimEnter can not really decrease the Nvim startup time.
|
|
|
|
Change border from sharp corner to curved corner.
|
|
1. Customize document hover window border color.
2. Show also the source that generates a certain diagnostic message.
|
|
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.
|
|
|
|
Change matching pattern so that we do not confuse this plugins.lua with
files of the same name in other path.
|
|
Add mapping for LSP code actions and remove useless mappings.
|
|
Only use it on Windows. Treesitter highlighting may be enough.
|
|
|
|
Onedark decides to change its master branch to main (I don't know why?)
|
|
|
|
Ref: https://github.com/wbthomason/packer.nvim/issues/455.
|
|
If Semshi is set to opt plugin, when we run PackerUpdate, the command `:
UpdateRemotePlugins` will be run. At this time, Semshi is not in the
runtimepath, so its manifest will not be generated in rplugin.vim
(located under ~/.local/share/nvim/rplugin.vim). So when we open a
Python file afterwards, although Semshi is in runtimepath, but its
manifest is missing, so we see error that command `Semshi enable` is not
found.
So after loading this plugin, i.e., when we open a Python source file,
we need to run UpdateRemotePlugins so that semshi can work correctly.
|
|
No need to use event for vim-airline if we want to load it after
vim-airline-themes. See also https://github.com/wbthomason/packer.nvim/issues/461.
|
|
It seems the order matters if we want to load vim-airline after
vim-airlinethemes. See also packer.nvim#461.
|
|
|
|
Do not forgest `noremap = true` when using nvim_set_keymap(), See also https://github.com/hrsh7th/nvim-compe/issues/452.
|
|
Block paste issue fixed in https://github.com/neovim/neovim/pull/14848.
|
|
|
|
It seems that BufReadPost does not work sometimes.
|
|
|
|
|
|
|
|
|
|
This reverts commit ff9f9dcc162276bc59fdec29f78d244a6aca2cb1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ccls has some false positive warnings, and it is hard to install on
Linux server without roor rights.
|
|
See also hrsh7th/nvim-compe#389.
|
|
|
|
Use ESC to close the nvim-compe completion menu
|
|
Only enable omni and spell source for certain filetypes. See also https://github.com/hrsh7th/nvim-compe/pull/170
|
|
Only enable spell source for Markdown files, see also https://github.com/hrsh7th/nvim-compe/pull/84.
|
|
|
|
|
|
It is annoying that the cursor is focused on the diagnostic floating window every time it is shown. See also: https://github.com/neovim/neovim/pull/14693 and https://github.com/neovim/neovim/pull/14649
|
|
|
|
|
|
|
|
Embedding lua in vimscript using lua here doc is not ideal for
editing.
|