Questions tagged [neovim-plugin]

63 questions
0
votes
1 answer

Cannot configure Null-ls on Neovim

I'm new into vim and I'm trying to configure null-ls to format files, I think I'm missing something, since whenever I try to run the command :NullLsInfo to see if I've got a formatter configured, it says that I don't have a buffer source…
0
votes
1 answer

how can i enter this mode using shortcuts in neovim?

I accident toggle this window, but i can't know how to toggle this terminal window even after i search in Google. After some trys, I find when i enter neovim with nvchad and press + I can toggle this window. But only find this : It's…
0
votes
0 answers

Emmet-ls options won't work in nvim(nvchad)

lua/custom/configs/lspconfig.lua: lspconfig.emmet_ls.setup { on_attach = on_attach, capabilities = capabilities, filetypes = { "css", "eruby", "html", "javascript", "javascriptreact", "less", "sass", "scss", …
0MR4N
  • 91
  • 3
0
votes
0 answers

Nvim-dap: Debug adapter didn't respond. OpenDebugAD7.exe 'waiting for v8 protocol on stdin/stdout'

I have configured nvim-dap for c++ with the following configuration: dap.adapters.cppdbg = { name = 'cppdbg', type = 'executable', command = vim.fn.stdpath('data') .. '/mason/bin/OpenDebugAD7.cmd', } dap.configurations.cpp = { { …
narcomoeba
  • 21
  • 4
0
votes
0 answers

teal programming language: unknown type error?

I'm trying to write neovim lua plugin using teal programming language. This is my project: https://github.com/linrongbin16/lsp-progress.nvim/tree/linrongbin16/tl When execute make, there's some error message unknown type: $ make tl build Wrote:…
linrongbin
  • 2,967
  • 6
  • 31
  • 59
0
votes
0 answers

LuaSnip install errors through packer in neovim

Neovim version: v0.9.0 Terminal: WezTerm I was trying to use plugins from the L3MON4D3 / LuaSnip GitHub repo for my snippets usage. Using packer as my plugin manager. Everything works fine except LuaSnip. Here's the whole pakcer.lua file: -- This…
HugoWang
  • 45
  • 5
0
votes
0 answers

How to add modules in treesitter neovim?

I'm trying to install treesitter nvim.I do everything according to the documentation, but nothing works. google does not provide any useful information on these errors. My packer.lua file: vim.cmd [[packadd packer.nvim]] return…
0
votes
1 answer

Having issues fixing editor showing random letters in line and in file tree explorer

I am working on my Neovim setup and have decided to use NVChad to bootstrap alot of the initial setup for me. The issue I am facing is with my editor and my file tree showing random letters on initial load but then go away once passed over through…
SaldanaJ
  • 11
  • 4
0
votes
0 answers

Why does Packer keep trying to remove my plugins?

I am starting my Neovim .config file from scratch and I'm having tons of problems with Packer. Now every time I call :PackerSync it always asks if I want to remove the directories of the plugins I have just installed. I tried to write an auto…
strip5711
  • 11
  • 3
0
votes
0 answers

I have this error with tresitter and neovim "Failed to load parser for lenguage 'html': uv_dlopen: dont found the specified process"

I don't know the reason for the error, previously it worked normally. It is also happening to me with ".yaml. Can someone tell me what I can try or how to fix it? I have found similar errors but with .cpp although they have not helped me at all.…
0
votes
0 answers

vscode neovim plugin is changing variable color behavior

I like neovim default behavior a bit more than vim default behavior so I switched plugins to neovim but neovim has an additional side effect of changing the default behavior for variables when I have a cursor over them. I want to disable the color…
financial_physician
  • 1,672
  • 1
  • 14
  • 34
0
votes
1 answer

Using non-default PYTHONPATH for pylsp installation in neovim

I'm trying to add python-lsp-server in my neovim enviroment. For my project I need to use non-default (not /usr/bin/python3) python3 version. How can I use my own python3 version? I'm try to run PYTHONPATH=/usr/lib/ nvim. But when…
vekarpov
  • 1
  • 1
0
votes
2 answers

Running a browser inside a neovim buffer

I would like to open website inside a buffer so I don't have to switch windows when developing web applications. Are there plugins which integrate a firefox or chrome window in neovim? I can only open a terminal in a buffer and open a terminal based…
0
votes
0 answers

Nvim plugin load dll failed

I compiled the source code to dll, and want to use it in my Nvim plugin, but it was failed. this is my dll source code //func.hpp #pragma once #ifdef __WIN32 #define EXPORT_DLL __declspec(dllexport) #else #define EXPORT_DLL…
Rizen
  • 21
  • 2
0
votes
1 answer

have problems installing plugins in neovim/vim

Whenever i install any plugin in neovim/vim, the commands don't work, neovim/vim gives me the same error saying that the command that the plugin has isn't a command. Am i doing something wrong? For more info, i use windows 10 (want to switch to…
George
  • 101
  • 8