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,9 +1,10 @@
return {
{ "rose-pine/neovim", name = "rose-pine" },
{
"LazyVim/LazyVim",
opts = {
colorscheme = "rose-pine-dawn",
},
},
{ "rose-pine/neovim", name = "rose-pine" },
{ "ellisonleao/gruvbox.nvim" },
{
"LazyVim/LazyVim",
opts = {
colorscheme = "rose-pine-dawn",
},
},
}

View File

@ -34,7 +34,7 @@ podman_run() {
# Mount host directories with programming projects.
[ -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
# container restarts.