Update Lazyvim

This commit is contained in:
whitney 2025-07-08 16:47:45 -07:00
parent c5f0ea4a94
commit 58c604b26e
4 changed files with 20 additions and 2 deletions

View File

@ -52,6 +52,19 @@ ln -sfn /path/to/dotfiles/lazyvim/init.lua ~/.config/nvim/init.lua
## Reminders
If uninstalling, you need to manually get rid of stuff in `~/.local/share/nvim` before reinstalling everything.
## Dependencies
Some plugins depend on other packages.
1. Ripgrep
This is needed because the grep feature (Leader + /) spawns an rg process to do grepping.
Install with:
```
sudo apt-get install ripgrep
```
```
## Plugins/Addons/Extras
### Mason (Language Servers)

View File

@ -1,5 +1,12 @@
return {
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim",
},
lazy = false,
opts = {
filesystem = {
filtered_items = {

View File

@ -1 +0,0 @@
return {}

View File

@ -1,7 +1,6 @@
return {
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = "all",
ignore_install = {},
highlight = {
enable = true,