From c1fe196ac7809ff4184661e39b17c1c79cad6e47 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Fri, 10 Jan 2025 13:13:09 -0500 Subject: [PATCH] updates or something --- emacs/emacs.doom/config.el | 4 ++-- nix/home-manager/modules/files.nix | 2 +- nix/home-manager/modules/packages/default.nix | 2 +- zed/settings.json | 14 ++++++-------- zsh/funcs/updater | 7 +++---- 5 files changed, 13 insertions(+), 16 deletions(-) diff --git a/emacs/emacs.doom/config.el b/emacs/emacs.doom/config.el index dda67e4..6c3e100 100644 --- a/emacs/emacs.doom/config.el +++ b/emacs/emacs.doom/config.el @@ -21,8 +21,8 @@ ;; font string. You generally only need these two: ;; (setq doom-font (font-spec :family "monospace" :size 12 :weight 'semi-light) ;; doom-variable-pitch-font (font-spec :family "sans" :size 13)) -(setq doom-font (font-spec :family "Iosevka Custom" :size 14 :weight 'medium) - doom-unicode-font (font-spec :family "Iosevka Custom" :size 14 :weight 'medium)) +(setq doom-font (font-spec :family "TX-02-BerkeleyAC" :size 14 :weight 'medium) + doom-unicode-font (font-spec :family "TX-02-BerkeleyAC" :size 14 :weight 'medium)) ;; There are two ways to load a theme. Both assume the theme is installed and ;; available. You can either set `doom-theme' or manually load a theme with the diff --git a/nix/home-manager/modules/files.nix b/nix/home-manager/modules/files.nix index 2e71e2d..c8b0ce7 100644 --- a/nix/home-manager/modules/files.nix +++ b/nix/home-manager/modules/files.nix @@ -5,7 +5,7 @@ }: let inherit (pkgs.stdenv.hostPlatform) isLinux; repo_root = "../../.."; - nv_fonts_basic = ["Maple Mono NF" "Departure Mono" "Fantasque Sans Mono"]; + nv_fonts_basic = ["TX-02-BerkeleyAC" "Maple Mono NF" "Departure Mono" "Fantasque Sans Mono"]; nv_fonts_normal = nv_fonts_basic ++ ( diff --git a/nix/home-manager/modules/packages/default.nix b/nix/home-manager/modules/packages/default.nix index d114275..9b487bd 100644 --- a/nix/home-manager/modules/packages/default.nix +++ b/nix/home-manager/modules/packages/default.nix @@ -19,7 +19,7 @@ owner = "cfoust"; repo = "cy"; rev = "refs/tags/v${ver}"; - hash = "sha256-W7xCAeoBn6nrSzkBX59qulIcgigeHhaaa38vfEEuaAQ="; + hash = "sha256-i5suNLh1Dy8sWKBasO1rnVRzDetEF77XXRonRk1RzB4="; }; vendorHash = null; diff --git a/zed/settings.json b/zed/settings.json index 708c078..26b323c 100644 --- a/zed/settings.json +++ b/zed/settings.json @@ -7,25 +7,23 @@ // custom settings, run `zed: open default settings` from the // command palette { - "vim_mode": true, - "autosave": "on_focus_change", "assistant": { "default_model": { "provider": "ollama", - "model": "qwen2.5-coder:latest" + "model": "llama3.2:3b" }, - "version": "2", - "enabled": true, - "button": true + "version": "2" }, - "buffer_font_family": "Iosevka Custom", + "vim_mode": true, + "autosave": "on_focus_change", + "buffer_font_family": "TX-02-BerkeleyAC", "buffer_font_fallbacks": [ "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji" ], "buffer_font_weight": 400, - "buffer_font_size": 16, + "buffer_font_size": 14, "load_direnv": "shell_hook", "ui_font_size": 16, "theme": { diff --git a/zsh/funcs/updater b/zsh/funcs/updater index 3307b5b..479b937 100644 --- a/zsh/funcs/updater +++ b/zsh/funcs/updater @@ -1,9 +1,8 @@ function update_me { + ( setopt local_options pushd_silent - pushd ~ - pushd ~/.dotfiles/nix + cd ~/.dotfiles/nix ./update.sh $@ - popd - popd || return + ) }