Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

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

vim-plug

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()
```

minpac

vim9script:

```vim
minpac#add('saccarosium/vim-netrw-salad')
```

legacy vimscript:

```vim
call minpac#add('saccarosium/vim-netrw-salad')
```

built-in

```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)