In addition to upgrading ubuntu to 23.10, the following changes were made: 1. Use the latest commit from [kickstart.nvim][0] 2. Setup [atuin][1] to share `shell` history 3. Conditionally configure `git`, based on [`gitbutler` blog post][2] 4. Improve `tmux` colorscheme configuration, based on [tmux vim truecolor git by andersevenrud][3] 5. Update cli's installed by `mise`: * awscli to 2.15.30 * dagger to 0.10.2 * elixir to 1.16.2 * erlang to 26.2.3 * eza to 0.18.7 * fzf to 0.48.1 * go to 1.22.1 * helm to 3.14.3 * kubectl to 1.29.3 * lefthook to 1.6.7 * node to 21.7.1 * poetry to 1.8.2 * python to 3.12.2 * terraform to 1.7.5 * tilt to 0.33.11 * usql to 0.17.5 * zoxide to 0.9.4 6. Added the cli's: * k3sup * k9s * rust [0]: https://github.com/nvim-lua/kickstart.nvim [1]: https://github.com/atuinsh/atuin [2]: https://blog.gitbutler.com/git-tips-1-theres-a-git-config-for-that/#conditional-configs [3]: https://gist.github.com/andersevenrud/015e61af2fd264371032763d4ed965b6 Reviewed-on: #30 Co-authored-by: Joao P Dubas <joao.dubas+gitea@gmail.com> Co-committed-by: Joao P Dubas <joao.dubas+gitea@gmail.com>
29 lines
880 B
YAML
29 lines
880 B
YAML
---
|
|
services:
|
|
nvim:
|
|
build: .
|
|
image: 'joaodubas/nvim:${NVIM_TAG:-latest}'
|
|
init: true
|
|
restart: unless-stopped
|
|
hostname: local
|
|
entrypoint: sleep
|
|
command: infinity
|
|
volumes:
|
|
- './config/atuin:/home/coder/.config/atuin'
|
|
- './config/git:/home/coder/.config/git'
|
|
- './config/mise:/home/coder/.config/mise'
|
|
- './config/nvim/lua/custom:/home/coder/.config/nvim/lua/custom'
|
|
- './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: {}
|