minor updates

This commit is contained in:
Alexander Navarro 2025-02-06 18:54:55 -03:00
parent bc52dafdd7
commit d84e0d646e
6 changed files with 468 additions and 577 deletions

View file

@ -78,6 +78,8 @@ cargo install --locked {{# each (flatten_table cargo.packages) }} "{{ this }}" {
{{ #if dotter.packages.cli }}
{{ #if not( command_success "fc-list | grep JetBrains")}}
{{ header "Configuring Nerd Fonts" }}
FONT_DIR="$HOME/.local/share/fonts"
@ -86,14 +88,7 @@ tmp_dir=$(mktemp -d)
curl -L https://github.com/ryanoasis/nerd-fonts/releases/latest/download/{{ nerd_font }}.zip -o "$tmp_dir/{{ nerd_font}}.zip"
unzip -o "$tmp_dir/{{nerd_font}}.zip" -d ${FONT_DIR}/{{ nerd_font }}
curl -L https://github.com/joshmedeski/sesh/releases/latest/download/sesh_Linux_x86_64.tar.gz -o "$tmp_dir/sesh.tar.gz"
mkdir -p "$HOME/.local/bin"
tar xvf "$tmp_dir/sesh.tar.gz" --directory="$HOME/.local/bin" sesh
rm -rf "$tmp_dir"
{{ /if }}
{{ /if }}

File diff suppressed because it is too large Load diff

View file

@ -15,7 +15,7 @@
"gitsigns.nvim": { "branch": "main", "commit": "5f808b5e4fef30bd8aca1b803b4e555da07fc412" },
"grapple.nvim": { "branch": "main", "commit": "b41ddfc1c39f87f3d1799b99c2f0f1daa524c5f7" },
"indent-blankline.nvim": { "branch": "master", "commit": "7871a88056f7144defca9c931e311a3134c5d509" },
"lazy.nvim": { "branch": "main", "commit": "56ead98e05bb37a4ec28930a54d836d033cf00f2" },
"lazy.nvim": { "branch": "main", "commit": "7e6c863bc7563efbdd757a310d17ebc95166cef3" },
"lazydev.nvim": { "branch": "main", "commit": "f59bd14a852ca43db38e3662395354cb2a9b13e0" },
"lualine.nvim": { "branch": "master", "commit": "2a5bae925481f999263d6f5ed8361baef8df4f83" },
"luvit-meta": { "branch": "main", "commit": "57d464c4acb5c2e66bd4145060f5dc9e96a7bbb7" },

View file

@ -32,7 +32,8 @@ return {
typescript = { "biome" },
typescriptreact = { "biome" },
xml = { "lemminx" },
zsh = { "shfmt" }
zsh = { "shfmt" },
sql = { "sleek" }
},
formatters = {
djlint = {

View file

@ -44,9 +44,6 @@ alias \
pco='podman compose' \
pps="podman ps --format 'table {{.ID}}\t{{.Names}}\t{{.State}}\t{{.Status}}\t{{.RunningFor}}'"
alias tm="fzf-tmux-sessions"
alias tmux="tmux -L $(hostname)" # allow to seamlessly create new servers inside containers
# Misc
alias \
reload='exec $SHELL -l'

View file

@ -7,7 +7,6 @@
# │ Preoload stuff │
# ╰──────────────────────────────────────────────────────────╯
source $HOME/.zprofile
# Set the directory we want to store zinit and plugins
ZINIT_HOME="${XDG_DATA_HOME:-${HOME}/.local/share}/zinit"