mirror of
https://github.com/runyanjake/dotfiles.git
synced 2025-10-04 21:57:30 -07:00
Update Lazyvim
This commit is contained in:
parent
c5f0ea4a94
commit
58c604b26e
@ -52,6 +52,19 @@ ln -sfn /path/to/dotfiles/lazyvim/init.lua ~/.config/nvim/init.lua
|
|||||||
## Reminders
|
## Reminders
|
||||||
If uninstalling, you need to manually get rid of stuff in `~/.local/share/nvim` before reinstalling everything.
|
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
|
## Plugins/Addons/Extras
|
||||||
|
|
||||||
### Mason (Language Servers)
|
### Mason (Language Servers)
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
return {
|
return {
|
||||||
"nvim-neo-tree/neo-tree.nvim",
|
"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 = {
|
opts = {
|
||||||
filesystem = {
|
filesystem = {
|
||||||
filtered_items = {
|
filtered_items = {
|
@ -1 +0,0 @@
|
|||||||
return {}
|
|
@ -1,7 +1,6 @@
|
|||||||
return {
|
return {
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
opts = {
|
opts = {
|
||||||
ensure_installed = "all",
|
|
||||||
ignore_install = {},
|
ignore_install = {},
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true,
|
enable = true,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user