Compare commits

...

2 Commits

Author SHA1 Message Date
5868d34775
refactor: move .dev directory
All checks were successful
Container build / container-build (push) Successful in 5m16s
2024-10-26 15:45:28 +02:00
6fffe4e0a0
feat: add gruvbox 2024-10-26 15:45:02 +02:00
2 changed files with 9 additions and 8 deletions

View File

@ -1,5 +1,6 @@
return { return {
{ "rose-pine/neovim", name = "rose-pine" }, { "rose-pine/neovim", name = "rose-pine" },
{ "ellisonleao/gruvbox.nvim" },
{ {
"LazyVim/LazyVim", "LazyVim/LazyVim",
opts = { opts = {

View File

@ -34,7 +34,7 @@ podman_run() {
# Mount host directories with programming projects. # Mount host directories with programming projects.
[ -d ~/Documents ] && arg "-v $HOME/Documents:/home/user/Documents" [ -d ~/Documents ] && arg "-v $HOME/Documents:/home/user/Documents"
[ -d ~/.dev ] && arg "-v $HOME/.dev:/home/user/.dev" [ -d ~/.local/share/devcontainer ] && arg "-v $HOME/.local/share/devcontainer:/home/user/.dev"
# Add volumes for .local and .cache so these survive # Add volumes for .local and .cache so these survive
# container restarts. # container restarts.