this post was submitted on 09 Sep 2023
14 points (100.0% liked)

Neovim

2116 readers
1 users here now

founded 1 year ago
MODERATORS
 

I just started to get into neovim today, and I decided to follow the first tutorial I came across (neovim from scratch) on youtube. The first thing that's done is to copy the repo into .config/nvim/. At startup nvim set up a bunch of stuff. is there anything that it sets up outside of the ./config/nvim file? Because I really dislike installing stuff on my computer that just stays even after deleting the installation folder.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] it_a_me@programming.dev 7 points 1 year ago* (last edited 1 year ago) (1 children)

$HOME/.local/state/nvim has some stuff

$HOME/.local/share/nvim and $HOME/cache/nvim may have some things, I don't remember

$HOME/.config/coc may have some stuff if you use the coc-vim extention

[โ€“] rastignac@programming.dev 1 points 1 year ago

Thank you for your answer :)