Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/medienhaus/dotfiles

medienhaus/ remote dev environment
https://github.com/medienhaus/dotfiles

Last synced: about 1 month ago
JSON representation

medienhaus/ remote dev environment

Awesome Lists containing this project

README

        

# medienhaus/ remote dev environment

The medienhaus/ remote dev environment configures **Bash** and **Vim**; to install:

```
git clone --bare https://github.com/medienhaus/dotfiles.git $HOME/dotfiles && \
git init --separate-git-dir=$HOME/dotfiles && \
git checkout
```

You might want to install [**fzf**](https://github.com/junegunn/fzf/), a general-purpose command-line fuzzy finder, which is conditionally configured for **Bash** to search through history via `Ctrl-r`, and **Vim** to find and open files in current directory via `Space-ff`.

```
apt install fzf
```

## Vim plugins

Vim **plugins** are defined as submodules in the `.gitmodules` file; to install:

```
git submodule update --init --remote
```