ide/docker-compose.yml
Joao P Dubas ea3b1a302e feat(nvim): use kickstart.nvim as base configuration
To make this effective, the following changes were made:

1. Patch `init.lua` to change common configurations
2. Implement custom configuration for plugins
2023-10-01 23:39:11 +00:00

20 lines
453 B
YAML

---
services:
nvim:
build: .
image: 'joaodubas/nvchad:latest'
init: true
restart: unless-stopped
hostname: local
entrypoint: sleep
command: infinity
volumes:
- 'home_cache:/home/coder/.cache'
- 'home_local_share:/home/coder/.local/share'
- './config/rtx:/home/coder/.config/rtx'
- './config/nvim/lua/custom:/home/coder/.confing/nvim/lua/custom'
volumes:
home_cache: {}
home_local_share: {}