From 7343ee1b8890c5002e8e355857518fcccd74a66c Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 30 May 2024 17:24:12 -0700 Subject: [PATCH] Just always install that theme file in known location --- install/neovim.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install/neovim.sh b/install/neovim.sh index f842c6f..3f81340 100644 --- a/install/neovim.sh +++ b/install/neovim.sh @@ -3,4 +3,5 @@ if ! command -v neovim &>/dev/null; then sudo apt update -y sudo apt install -y neovim git clone https://github.com/LazyVim/starter ~/.config/nvim + cp ~/.local/share/omakub/themes/neovim/tokyo-night.lua ~/.config/nvim/lua/plugins/theme.lua fi