abzcoding / lvim

šŸ§‘ā€šŸš€ Bloated LunarVim šŸš€
MIT License
471 stars 65 forks source link

How do I know if I've installed this correctly? #128

Closed IanQS closed 1 year ago

IanQS commented 1 year ago

As in title! I've followed the instructions listed

I've also run

mv ~/.config/lvim ~/.config/lvim_backup
git clone https://github.com/abzcoding/lvim.git ~/.config/lvim
lvim +LvimUpdate +LvimCacheReset +q
lvim # run :Lazy sync

and the lvim welcome screen pops up, so I think things are working? One thing to note is that when I try to run Lazy sync within the lvim instance, I get the error: E492: Not an editor command: Lazy sync. I've tried the variation lazy sync too but that didn't work.


I tried running the custom commands for Harpoon as you've listed out in plugin:harpoon but it doesn't seem to show up in the pop-up, and pressing Space+Space doesn't seem to have the intended affect. I have verified that harpoon is enabled by finding

lvim.builtin.harpoon = { active = true } -- use the harpoon plugin

in the config.lua


Another point: I run into attempt to index field 'bigfile' (a nil value)" file="init.lua", line=49 when I run lvim. I hope this is enough detail to help!

abzcoding commented 1 year ago

first off, make sure you've installed the latest version of lunarvim using

bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/installer/install.sh)

if you're not sure, you can uninstall the previous version and install it again:

bash ~/.local/share/lunarvim/lvim/utils/installer/uninstall.sh
bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/installer/install.sh)

also note that I'm on NVIM v0.10.0-dev-58+g66c66d8


then try opening lvim, and check :messages and :Notifications and look for errors, make sure to run this outside of the dashboard, for example, open the config.lua file and then run these.

then try running :Lazy sync and see if it is working or not. if it still didn't work, please build the latest neovim from master and try again


harpoon doesn't work because lazy doesn't work ( it is not installed yet), if you manage to fix the lazy issue, that one will work as well


again it seems like either you're using a very old version of lunarvim, or there is something wrong with your lunarvim installation because you can clearly see lvim.builtin.bigfile config in the lunarvim code itself: https://github.com/LunarVim/LunarVim/blob/23ace671d66da2d5dfd01a5701a5743be9ec36a0/lua/lvim/config/init.lua#L38

abzcoding commented 1 year ago

Closing due to inactivity. Feel free to reopen it