1. Migrate from `rtx` to `mise` 2. Set most of the tools using `mise` * Some tools, such as `starship` and `zoxide` are installed locally, so they are available at boot time 3. Improve `tmux` by adding * resurrect and continuum to record/restore sessions * better color scheme 4. Setup multiple `elixir-ls` releases using the same repository 5. Upgraded `kickstart.nvim` to latest version Reviewed-on: #24
27 lines
782 B
YAML
27 lines
782 B
YAML
---
|
|
services:
|
|
nvim:
|
|
build: .
|
|
image: 'joaodubas/nvim:${NVIM_TAG:-latest}'
|
|
init: true
|
|
restart: unless-stopped
|
|
hostname: local
|
|
entrypoint: sleep
|
|
command: infinity
|
|
volumes:
|
|
- './config/nvim/lua/custom:/home/coder/.config/nvim/lua/custom'
|
|
- './config/mise:/home/coder/.config/mise'
|
|
- './config/starship:/home/coder/.config/starship'
|
|
- './config/tmux:/home/coder/.config/tmux'
|
|
- './config/tmuxp:/home/coder/.config/tmuxp'
|
|
- 'home_cache:/home/coder/.cache'
|
|
- 'home_local_share:/home/coder/.local/share'
|
|
- 'home_local_state:/home/coder/.local/state'
|
|
- 'home_plugins_tmux:/home/coder/.config/tmux/plugins'
|
|
|
|
volumes:
|
|
home_cache: {}
|
|
home_local_share: {}
|
|
home_local_state: {}
|
|
home_plugins_tmux: {}
|