Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saccarosium/vim-netrw-salad
A delicious salad to go with your beloved netrw.
https://github.com/saccarosium/vim-netrw-salad
Last synced: 7 days ago
JSON representation
A delicious salad to go with your beloved netrw.
- Host: GitHub
- URL: https://github.com/saccarosium/vim-netrw-salad
- Owner: saccarosium
- License: mit
- Created: 2024-03-31T13:43:34.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-08-24T14:17:01.000Z (3 months ago)
- Last Synced: 2024-08-24T15:31:58.756Z (3 months ago)
- Language: Vim Script
- Size: 7.81 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-vim9 - vim-netrw-salad
README
# Netrw Salad
The goal of this plugin is to be as unintrusive as possible to the default netrw experience. While trying to make some modification to improve usability.
## Features
* More sensible defaults
* Press `-` to open directory listing where the current file is located
* Quickly navigate between files and directories using `hjkl`
* When deleting or rename a file the associated buffer will be deleted## Installation
vim9script:
```vim
plug#begin()
Plug 'saccarosium/vim-netrw-salad'
plug#end()
```legacy vimscript:
```vim
call plug#begin()
Plug 'saccarosium/vim-netrw-salad'
call plug#end()
```vim9script:
```vim
minpac#add('saccarosium/vim-netrw-salad')
```legacy vimscript:
```vim
call minpac#add('saccarosium/vim-netrw-salad')
``````sh
mkdir -p $HOME/.vim/pack/packs/start
cd $HOME/.vim/pack/packs/start
git clone https://github.com/saccarosium/vim-netrw-salad
```## Documentation
See [doc/netrw-salad.txt](https://github.com/saccarosium/vim-netrw-salad/blob/main/doc/netrw-salad.txt)