updates or something
This commit is contained in:
parent
7dcfd82a90
commit
c1fe196ac7
5 changed files with 13 additions and 16 deletions
|
@ -21,8 +21,8 @@
|
||||||
;; font string. You generally only need these two:
|
;; font string. You generally only need these two:
|
||||||
;; (setq doom-font (font-spec :family "monospace" :size 12 :weight 'semi-light)
|
;; (setq doom-font (font-spec :family "monospace" :size 12 :weight 'semi-light)
|
||||||
;; doom-variable-pitch-font (font-spec :family "sans" :size 13))
|
;; doom-variable-pitch-font (font-spec :family "sans" :size 13))
|
||||||
(setq doom-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 "Iosevka Custom" :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
|
;; 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
|
;; available. You can either set `doom-theme' or manually load a theme with the
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
}: let
|
}: let
|
||||||
inherit (pkgs.stdenv.hostPlatform) isLinux;
|
inherit (pkgs.stdenv.hostPlatform) isLinux;
|
||||||
repo_root = "../../..";
|
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_normal =
|
||||||
nv_fonts_basic
|
nv_fonts_basic
|
||||||
++ (
|
++ (
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
owner = "cfoust";
|
owner = "cfoust";
|
||||||
repo = "cy";
|
repo = "cy";
|
||||||
rev = "refs/tags/v${ver}";
|
rev = "refs/tags/v${ver}";
|
||||||
hash = "sha256-W7xCAeoBn6nrSzkBX59qulIcgigeHhaaa38vfEEuaAQ=";
|
hash = "sha256-i5suNLh1Dy8sWKBasO1rnVRzDetEF77XXRonRk1RzB4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = null;
|
vendorHash = null;
|
||||||
|
|
|
@ -7,25 +7,23 @@
|
||||||
// custom settings, run `zed: open default settings` from the
|
// custom settings, run `zed: open default settings` from the
|
||||||
// command palette
|
// command palette
|
||||||
{
|
{
|
||||||
"vim_mode": true,
|
|
||||||
"autosave": "on_focus_change",
|
|
||||||
"assistant": {
|
"assistant": {
|
||||||
"default_model": {
|
"default_model": {
|
||||||
"provider": "ollama",
|
"provider": "ollama",
|
||||||
"model": "qwen2.5-coder:latest"
|
"model": "llama3.2:3b"
|
||||||
},
|
},
|
||||||
"version": "2",
|
"version": "2"
|
||||||
"enabled": true,
|
|
||||||
"button": true
|
|
||||||
},
|
},
|
||||||
"buffer_font_family": "Iosevka Custom",
|
"vim_mode": true,
|
||||||
|
"autosave": "on_focus_change",
|
||||||
|
"buffer_font_family": "TX-02-BerkeleyAC",
|
||||||
"buffer_font_fallbacks": [
|
"buffer_font_fallbacks": [
|
||||||
"Apple Color Emoji",
|
"Apple Color Emoji",
|
||||||
"Segoe UI Emoji",
|
"Segoe UI Emoji",
|
||||||
"Noto Color Emoji"
|
"Noto Color Emoji"
|
||||||
],
|
],
|
||||||
"buffer_font_weight": 400,
|
"buffer_font_weight": 400,
|
||||||
"buffer_font_size": 16,
|
"buffer_font_size": 14,
|
||||||
"load_direnv": "shell_hook",
|
"load_direnv": "shell_hook",
|
||||||
"ui_font_size": 16,
|
"ui_font_size": 16,
|
||||||
"theme": {
|
"theme": {
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
function update_me {
|
function update_me {
|
||||||
|
(
|
||||||
setopt local_options pushd_silent
|
setopt local_options pushd_silent
|
||||||
pushd ~
|
cd ~/.dotfiles/nix
|
||||||
pushd ~/.dotfiles/nix
|
|
||||||
./update.sh $@
|
./update.sh $@
|
||||||
popd
|
)
|
||||||
popd || return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue