Questions tagged [neovim]
Questions regarding Neovim, a refactored fork of Vim. Should be used with other tags to narrow down the question.
1,993 questions
0 votes
0 answers
7 views
tab indents keep going to 8 spaces in my kickstart installation
I'm a relatively new Neovim user, and am struggling with the indentation rules. I would like my tabs to be 4 spaces. I understand there are several options for this. In the init.lua file for kickstart ...
4 votes
1 answer
132 views
EDITOR=nvim doesn't work with "crontab -e"
EDITOR=vim crontab -e works, but: EDITOR=nvim crontab -e does not. Changes made to the crontab don't stick. Why is this?
1 vote
1 answer
66 views
After migrating from require('lspconfig').setup{} to vim.lsp.config(), why do I still need to have the neovim/nvim-lspconfig plugin installed?
After getting the deprecation warning from the neovim/nvim-lspconfig plugin that the require('lspconfig').setup() function was being deprecated in favor of the vim.lsp.config() and vim.lsp.enable() ...
1 vote
0 answers
12 views
How to make working directory always follow netrw's current directory?
I've set vim.g.netrw_keepdir = 0 but when I open a directory in netrw that has directories in it, changing to one of the subdirectories using netrw (pressing enter on it) doesn't update :pwd ...
1 vote
2 answers
64 views
synID() always returns 0 in Neovim but not in Vim
I'm trying to move to Neovim from regular Vim and while tinkering with UltiSnips I found out that the synID function always returns 0 for some filetypes in Neovim, while it works fine in Vim. For ...
0 votes
1 answer
43 views
Configure bufferline colors and naming of tabs
In Neovim I am using nvim-tree and the bufferline plugin. The latter is to have tabs. I am not able on how to properly configure bufferline to have the following behavior: When I switch to nvim-tree ...
0 votes
0 answers
20 views
Please help me setting up Vimwiki with neovim such that I experience minimal swap file problems
Using vimwiki via neovim, I might modify something and then close the window without me having explicitly saved my modifications! (:w). The solution is is not: avoid that mistake - because I make that ...
1 vote
3 answers
49 views
Insert same line to .gitignore of 10 projects (batch process)
Let's say I want to add a line "conan2" in the .gitignore of 10 projects just below proj0X/.gitignore .. # Conan CMakeUserPresets.json .. New: .. # Conan CMakeUserPresets.json conan2 .. I ...