2,468 questions
0
votes
0
answers
32
views
How to tangle many files from neorg with correct syntax highlighting and without concurrency issues?
I'm trying to write many of my system settings to one neorg file.
Currently I managed to get everything working by doing the following unholy approach:
@document.meta
tangle: {
tmux: ~/.tmux.conf
...
2
votes
0
answers
32
views
inlay hints don't work for golang in neovim?
i have hints working for lua, but not for go.
i've already tried a bunch of stuff like several go configs, though it seems like it is a server problem, because Settings: {} is what i get in ...
0
votes
0
answers
38
views
Treesitter highlighting breaks after restarting nvim
I am using the latest version of treesitter. Its configuration in code looks something like this:
require('lazy').setup({
'nvim-treesitter/nvim-treesitter',
lazy = false,
build = ':TSUpdate'
})
...
1
vote
0
answers
41
views
neovim treesitter and mini.ai
I found out the mini.ai html tag selection is very bad but treesitter was so good at it so I decided to change it to treesiter without loosing the good things in mini.ai so I did this config and so ...
-3
votes
0
answers
64
views
How to use auto-completet by Clangd in Lazy.nvim?
To be convenient when coding C/C++ programs, I decided to use Clangd for auto-complete plugin. I went to the official website of Lazy.nvim and read guides to install and use. I tried :Mason and :...
1
vote
1
answer
295
views
How to finish Tree-sitter plugin in Neovim by Lazy.nvim?
I am a newbie Neovim user and I am configuring Neovim by Lazy in init.lua. However, I had a problem when installing Tree-sitter plugin by Lazy.nvim.
In file init.lua, I use below command to install ...
Tooling
0
votes
2
replies
51
views
How to enable Razor/Blazor LSP support in Neovim using lazy.nvim?
I am currently using lazy.nvim to manage my plugins and csharp-language-server for C# development. While C# files work perfectly, I cannot get LSP features (completions, diagnostics, or go-to-...
2
votes
0
answers
87
views
Debugging a c# xunit project with netcoredbg in neovim is skipping the breakpoints
I'm using netcoredbg to debug xunit tests for a c# project in neovim.
I'm getting this warning:
"You are debugging a Release build of MIcrosoft.TestPlatform.Build.dll. Using Just My Code with ...
1
vote
0
answers
54
views
Error while configuring jdtls on neovim 0.12 without using any plugin
I am trying to run jdtls lsp on the latest nvim 0.12 with minimal setup without using any plugin for my nvim version:
NVIM v0.12.0-dev-5299967
Build type: Debug
LuaJIT 2.1.1764270282
However, when i ...
1
vote
3
answers
100
views
Copy lines that match a pattern within a range in nvim
Assume I have the following text, and I want to use nvim to extract only the lines that contain z_image:
README.md
14 kB
Update README.md
12 days ago
z_image_turbo-Q3_K.gguf
4.12 GB
Intial Commit
12 ...
Tooling
0
votes
3
replies
59
views
lazyvim, golang with goimports: is it possible to use a local config for goimports?
I am working on a module called automat.
When I save my go file, it's being reformatted from:
package cmd
import (
"context"
"fmt"
"os"
"strings"
&...
Advice
0
votes
0
replies
34
views
nvim server to use nvim as godot editor
I am trying to use nvim as the external editor for Godot, with GDScript.
I have found a decent amounts of post explaining how to do it, so I have some idea on how to do it.
No solutions perfectly fit ...
0
votes
2
answers
68
views
replacing multiple lines in nvim based on an array
If I have the following content
head = cfg["head"]
head = cfg["head"]
head ...
Tooling
0
votes
0
replies
50
views
How to get started with slimv in neovim?
I have created a plugin for lazy:
.config/nvim/lua/plugins/slimv.lua:
return {
"kovisoft/slimv"
}
Now, how do I start a REPL in neovim?
I have also created a minimal common lisp file:
...
2
votes
0
answers
64
views
Neovim LuaSnip configuration problem, Lua snippets work correctly but JSON doesn't
I have an NvChad configuration for NeoVim, and I was trying to configure a LuaSnip plugin, but for some reason my Lua snippets are working correctly, but the json ones do not, and I want to figure out ...