邯郸女营养师“捐髓” 为患者带来生的希望
30 questions with no upvoted or accepted answers
2
votes
0
answers
247
views
How do I rename a directory with Snacks.vim?
I use Snacks.vim via LazyVim. I know that Snacks.vim allows me to rename files with r, but I cannot find any way to rename a folder or directory.
2
votes
0
answers
199
views
Why won't lazy.nvim update itself?
I'm trying to update to the latest lazy version for quite some time, but lazy refuses to and stays on the same version.
2
votes
0
answers
2k
views
Extremely slow with C++ LSP and fairly big project
How do i troubleshoot what is causing below problem.
Problem:
neovim unresponsive for several seconds (10-30 seconds) for any keys
Setup:
Neovim 0.9.2 and neovim nightly
workspace with > 900 files
...
1
vote
0
answers
35
views
Neovim's notifications position
I'm using lazyvim with nvim-jdtls plugin.
Any idea what plugin is controlling display settings of the notifications from the screenshot and how to change their position to for example top right?
1
vote
1
answer
133
views
LazyVim: set keybinding for quotes in vimtex
This question flows from LaTeX plugin for editing in nvim where the question is what was recommended when we want to write "word" and then the environment would automatically convert it to ...
1
vote
0
answers
74
views
Gopls is not providing highlight tokens for constants or packages/namespaces
For example, in the code below the constant "myUrl" will be highlighted as a constant when it is declared (:Inspect = @constant) but not when it is used in main() (:Inspect = @variable). My ...
1
vote
1
answer
3k
views
Blink.cmp unable to load config after new LazyVim update. Expected table but got boolean for treesitter
Whenever I Load up Neovim I get the following error:
Failed to run config for blink.cmp
...share/nvim/lazy/blink.cmp/lua/blink/cmp/config/utils.lua:10: completion.menu.draw.treesitter: expected table,...
1
vote
1
answer
76
views
Is it possible to limit completions for certain tokens?
I am using lazyvim with mason + blink + lspconfig. It almost perfectly works with provided defaults, but there is one thing i don't like. I really want to disable completions on text objects, and text ...
1
vote
2
answers
367
views
Neovim: require('which-key') in keymaps.lua file gives error
I use Neovim (v0.9.5) and lazy to manage my plugins. My current config structure is as follows:
├── init.lua
├── lazy-lock.json
└── lua
└── enrique
├── core
│?? ├── init.lua
...
1
vote
0
answers
195
views
From vim to nvim LazyVim - plugins help needed
moving from my vim setup to LazyVim I have troubles to setup some plugins. Most important would be a working plugin for surround like mini-surround, vim-surround (which I am used to) or nvim-surround. ...
1
vote
0
answers
232
views
Angular Language server crashes when working on an `nx` project with `nx serve`
The Angular language server in nvim crashes after each automatic rebuild/reload of nx serve. It crashes with Program does not contain "<PROJECT_PATH>/apps/org/src/app/app.component....
1
vote
0
answers
2k
views
How to solve [lspconfig] Cannot access configuration
I am just starting to learn Neovim so I downloaded LazyVim after watching some youtube videos and I followed those steps but now it is showing this error message after I undid the comment on ...
1
vote
1
answer
2k
views
Errors Configuring conform.nvim for Lazy-Vim: Undefined Globals and Types
I am following the Full Spec from the official documentation to configure conform.nvim for Lazy-Vim
However, I'm encountering multiple errors, one of which is that Util is not recognized, even though ...
1
vote
1
answer
2k
views
How to load formatter.nvim with lazy.nvim?
I am trying to load formatter.nvim but I get this error:
Lua Diagnostics undefined field 'setup'
What is the path for the logs?
This is my full configuration:
return {
'mhartington/formatter.nvim',...
0
votes
0
answers
75
views
Configure `window/showMessage` in neovim/nvim-lspconfig
I work on a custom LSP. I use neovim/nvim-lspconfig to configure LSP for LazyVim. It all works fine, but I cannot make nvim to display notify on windonw/showMessage messages from LSP.
What I know is ...