From 34d4f9f313201ddabfe39b98770b50326a99865d Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Tue, 11 Jun 2024 12:27:55 -0700 Subject: [PATCH] Add fonts to external --- .chezmoiexternal.toml.tmpl | 19 +++++++++++++++++-- dot_config/profile/profile.d/alias.sh.tmpl | 7 ------- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/.chezmoiexternal.toml.tmpl b/.chezmoiexternal.toml.tmpl index 37619bb..01c1ff1 100644 --- a/.chezmoiexternal.toml.tmpl +++ b/.chezmoiexternal.toml.tmpl @@ -2,13 +2,28 @@ #{{- /* vim: set filetype=toml: */ -}} [".local/share/nvim/lazy/lazy.nvim"] type = "archive" - url = "https://github.com/folke/lazy.nvim/archive/refs/tags/v10.20.3.tar.gz" + url = "https://github.com/folke/lazy.nvim/archive/refs/tags/v10.23.0.tar.gz" exact = true stripComponents = 1 #{{ if eq .chezmoi.os "linux" }} +[".local/share/fonts/BitstreamVeraSansMono"] + type = "archive" + url = "https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/BitstreamVeraSansMono.zip" + exact = true + +[".local/share/fonts/IBMPlexMono"] + type = "archive" + url = "https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/IBMPlexMono.zip" + exact = true + +[".local/share/fonts/JetBrainsMono"] + type = "archive" + url = "https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/JetBrainsMono.zip" + exact = true + [".local/bin/nvim.appimage"] type = "file" - url = "https://github.com/neovim/neovim/releases/download/v0.9.5/nvim.appimage" + url = "https://github.com/neovim/neovim/releases/download/v0.10.0/nvim.appimage" executable = true #{{ end }} diff --git a/dot_config/profile/profile.d/alias.sh.tmpl b/dot_config/profile/profile.d/alias.sh.tmpl index c005f09..116b623 100644 --- a/dot_config/profile/profile.d/alias.sh.tmpl +++ b/dot_config/profile/profile.d/alias.sh.tmpl @@ -5,13 +5,6 @@ alias curl='curl --proto-default https --silent ' alias to_lower="tr '[:upper:]' '[:lower:]'" alias to_upper="tr '[:lower:]' '[:upper:]'" -#{{- if lookPath "nvim.appimage" }} -alias vim=nvim.appimage -alias nvim=nvim.appimage -#{{- else if lookPath "nvim" }} -alias vim=nvim -#{{- end }} - alias node_lts="curl --silent https://nodejs.org/dist/index.tab | cut -f 1,10 | grep -v '-' | head -n 2 | tail -n 1 | cut -f 1" alias node_current="curl --silent https://nodejs.org/dist/index.tab | cut -f 1,10 | grep '-' | head -n 1 | cut -f 1"