Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 28 additions & 29 deletions .config/spacemacs/.spacemacs
Original file line number Diff line number Diff line change
Expand Up @@ -878,47 +878,46 @@ _p_rev _u_pper _=_: upper/lower _r_esolve
("@bug" . ?b)
("@feature" . ?u)
("@spike" . ?j)
(:endgroup . nil)

;; Ticket flags
("@write_future_ticket" . ?w)
("@emergency" . ?e)
("@research" . ?r)

;; Meeting types
(:startgroup . nil)
("sprint_planning" . ?i)
("sprint_retro" . ?s)
(:endgroup . nil)

;; Code TODOs tags
("QA" . ?q)
("backend" . ?k)
("broken_code" . ?c)
("frontend" . ?f)
("devops" . ?d)

;; Special tags
("CRITICAL" . ?x)
("obstacle" . ?o)

;; Meeting tags
("general" . ?l)
("meeting" . ?m)
("misc" . ?z)
;; tasks TODOs
(:startgroup . nil)
("homelab" . ?h)
("3d_printer" . ?3)
("maintenance" . ?m)
("planning" . ?p)
("workout" . ?w)
(:endgroup . nil)

;; chinese tags
(:startgroup . nil)
("noun" . ?n)
("verb" . ?v)
("adjective" . ?a)
("adverb" . ?z)
(:endgroup . nil)

;; Work Log Tags
("accomplishment" . ?a)
))
(setq org-tag-faces
'(
("planning" . (:foreground "#cba6f7" :weight bold)) ; Mauve
("backend" . (:foreground "#89b4fa" :weight bold)) ; Blue
("frontend" . (:foreground "#a6e3a1" :weight bold)) ; Green
("QA" . (:foreground "#fab387" :weight bold)) ; Peach
("meeting" . (:foreground "#f9e2af" :weight bold)) ; Yellow
("CRITICAL" . (:foreground "#f38ba8" :weight bold)) ; Red
("@bug" . (:foreground "#f38ba8" :background "#313244" :weight bold)) ; Red on surface0
("@feature" . (:foreground "#a6e3a1" :background "#313244" :weight bold)) ; Green on surface0
("@spike" . (:foreground "#cba6f7" :background "#313244" :weight bold)) ; Mauve on surface0
("@emergency" . (:foreground "#fab387" :background "#45475a" :weight bold :box t)) ; Peach on surface1 with box
("homelab" . (:foreground "#89b4fa" :weight bold)) ; Blue
("3d_printer" . (:foreground "#a6e3a1" :weight bold)) ; Green
("maintenance" . (:foreground "#f9e2af" :weight bold)) ; Yellow
("planning" . (:foreground "#f38ba8" :weight bold)) ; Red
("noun" . (:foreground "#fab387" :weight bold)) ; Peach
("verb" . (:foreground "#cba6f7" :weight bold)) ; Mauve
("adjective" . (:foreground "#94e2d5" :weight bold)) ; Teal
("adverb" . (:foreground "#f5c2e7" :weight bold)) ; Pink
))
;; --- org-modern ---
(setq org-adapt-indentation t
Expand Down Expand Up @@ -1026,7 +1025,7 @@ _p_rev _u_pper _=_: upper/lower _r_esolve
(defun connect-macos()
"Open a remote folder using TRAMP in Dired."
(interactive)
(dired "/ssh:macos@192.168.4.245:/"))
(dired "/ssh:mac@192.168.4.167:/"))

(defun connect-pi ()
"Open a remote folder using TRAMP in Dired."
Expand Down
1 change: 1 addition & 0 deletions nix-darwin/home-modules/programs/cloud.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
(lib.mkIf config.awscli.enable [
ssm-session-manager-plugin
awscli2
aws-sam-cli
rclone
])

Expand Down
4 changes: 2 additions & 2 deletions nix-darwin/users/henri/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
};
macos = {
# ssh macos
hostname = "192.168.4.245";
user = "macos";
hostname = "192.168.4.167";
user = "mac";
};
factorio = {
# ssh factorio
Expand Down