Questions tagged [lunarvim]

25 questions
2
votes
1 answer

Highlight TODO permanently in vim(nvim)/treesitter

I'm trying to highlight TODO comment while using treesitter. I have already read github issue of treesitter and installed TSInstall comment. and running :hi link @text.note Todo temporarily works but when I exit the vim page and reopen it, it seems…
z2ouu
  • 41
  • 1
  • 10
2
votes
1 answer

How to change lunarvim native colors to match neovim?

I'm using lunarvim and don't want to utilize TreeSitter for color management. I like the pablo colorscheme and in both vim and nvim the colors show up just fine, but in lvim the colors change. Specifically, the blue color is very hard to read as in…
drjrm3
  • 4,474
  • 10
  • 53
  • 91
2
votes
1 answer

Setup lunarvim to use prettier-eslint

I'm migrating to Lunarvim from Atom and I need to configure Lunarvim to use prettier-eslint for Javascript files. Read lunarvim docs but not sure how to do it.
Fabiano Taioli
  • 5,270
  • 1
  • 35
  • 49
1
vote
1 answer

Lunar vim does not highlight syntax error on solidity, the default LSP does not show

When I was coding on solidity the syntax erros did not appear, every time I need to compile to solve see compilation problems. I tried to download several plugins to Lunar VIM, tried to add vscode plugins too but did not work.
1
vote
0 answers

How can I configure treesitter to use a different compiler and avoid crashing when opening bash files in LunarVim?

I am trying to run LunarVim on a server which is quite old. The installed gcc on the system is causing issues because it is older (GCC 4.9), specifically with treesitter. I don't have admin access on the system to update it. I compiled a newer…
nmello
  • 11
  • 3
1
vote
0 answers

How can I debug a react typescript project scaffolded using Vite in Lunarvim with nvim-dap and firefox-debugadapter?

local dap = require('dap') dap.adapters.firefox = { type = 'executable', command = 'node', args = { os.getenv('HOME') .. '/.local/share/nvim/mason/packages/firefox-debug-adapter/dist/adapter.bundle.js' }, } dap.configurations.typescriptreact…
linusw
  • 1,140
  • 3
  • 9
1
vote
2 answers

Managing Lunar Vim (lvim) config.lua by separating it in different files

Trying to write config.lua for lvim that wiil be separated in different files? that will be included in config.lua with require(''). Everything works if i try i in .config/lvim/ directory, but i get below message, when i run lvim in…
alexander
  • 21
  • 4
1
vote
1 answer

Bash compare local neovim version to desired version

I am working on a script to determine if my local neovim version is below a desired version. I am using bash on PopOS 22.04. The script will be used for a dev environment setup and lunarvim requires the Neovim version to be 0.8.0+. The desired end…
Amoz
  • 37
  • 4
1
vote
0 answers

Neovim not showing all possibilities in LSP

I have a fairly standard version of Lunar Vim. While coding, the LSP shows potential matches but, I can't get it showing all the potential matches. I just shows 1 single entry for each name. Take a look at the following image: It shows isUndefined…
carlosV2
  • 1,167
  • 6
  • 15
0
votes
1 answer

using lunarvim with fortls not working properly

I tried to use fortls language server (installed via Mason) in Lunarvim, but lvim keeps showing "LSP inactive". The Python and the lua language server are working without any problem I've restarted it (LspResart) and uninstalled and reinstalled it…
fpl
  • 1
  • 2
0
votes
0 answers

ChatGPT neovim plugin installed, but will not load

I'm having difficulty using this new ChatGPT plugin. By executing packer status, I see it's installed, but isn't loading. Additionally, nui.nvim is not loading either. Any help is welcome. Thank you. Here's the config file: -- install…
56phil
  • 22
  • 5
0
votes
1 answer

Problem with YAML on Lunar VIM in Windows

Hello I was 3 hours trying to solve this issue by my own but I did not arrive in a solution, everytime that I open a project with yaml give this error: Error executing vim.schedule lua callback: Failed to load parser for language 'yaml': uv_dlopen:…
0
votes
0 answers

Problem setting up jdtls in LunarVim on Windows 10

I am getting the following error in :LspLog : [ERROR][2023-06-01 17:43:57] .../vim/lsp/rpc.lua:734 "rpc" "C:\\Users\Sean\AppData\Local\nvim-data\mason\bin\jdtls.CMD" "stderr" 'The command "python" is either misspelled or could not be found.\r\n' I…
0
votes
1 answer

lunarvim LSP issues in git projects

I have been using lunarvim for the last few months working on a NON-git C++ project with great success. The tree structure is very simple: C:\project\source so I used to cd c:\project\source and then lvim and everything (LSP and everything…
user815129
  • 2,236
  • 2
  • 20
  • 40
0
votes
1 answer

looking for a C++ function in the current buffer

I have a large codebase with huge C++ files each containing hundreds of functions. Is there a way to jump to a specific function in the current buffer just by knowing the name? I can't use gd/gD because there is nothing under the cursor, gr wont do…
user815129
  • 2,236
  • 2
  • 20
  • 40
1
2