https://github.com/ethanjameslew/elew-vim
my vim configuration
https://github.com/ethanjameslew/elew-vim
Last synced: 4 months ago
JSON representation
my vim configuration
- Host: GitHub
- URL: https://github.com/ethanjameslew/elew-vim
- Owner: EthanJamesLew
- License: gpl-3.0
- Created: 2023-09-16T18:40:23.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-13T18:25:28.000Z (over 1 year ago)
- Last Synced: 2024-04-14T08:52:20.696Z (over 1 year ago)
- Language: Nix
- Size: 125 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/EthanJamesLew/elew-vim/actions/workflows/nix.yml)
## README### Overview
This repository contains a personal Vim configuration using `nixvim`. It can be executed as a Nix flake or within a Docker container.### Running the Configuration
The preferred method to install this vim is via nix profile (there is no need to clone the repo)
```shell
nix profile install github:EthanJamesLew/elew-vim
```#### Nix Flake
Execute:
```
nix run .
```#### Docker
First, ensure the Docker image is built:
```shell
nix build .#dockerImage
docker load < result
```Run the image on the current directory
```shell
docker run -v $PWD:/workspace -w /workspace -it elew-vim:latest
```