diff options
author | jdlugosz963 <jdlugosz963@gmail.com> | 2024-09-20 14:16:56 +0200 |
---|---|---|
committer | jdlugosz963 <jdlugosz963@gmail.com> | 2024-09-20 14:16:56 +0200 |
commit | 45bb0d11161b1c5077a1415eed6dbd0fd25ccb6a (patch) | |
tree | b564c1c43920def6641cd482a7b4dca453dbc043 /.emacs.d/jd/jd-custom.el | |
parent | 07dd8e37eb767c3dd6abf63e5e4a720cd778da15 (diff) | |
download | dotfiles-45bb0d11161b1c5077a1415eed6dbd0fd25ccb6a.tar.gz dotfiles-45bb0d11161b1c5077a1415eed6dbd0fd25ccb6a.zip |
Change dotfiles structure, and add guix-channels declaration.
Diffstat (limited to '.emacs.d/jd/jd-custom.el')
-rwxr-xr-x | .emacs.d/jd/jd-custom.el | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/.emacs.d/jd/jd-custom.el b/.emacs.d/jd/jd-custom.el deleted file mode 100755 index a634baa..0000000 --- a/.emacs.d/jd/jd-custom.el +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | ;;; Dotfiles --- Jakub Dlugosz emacs config | ||
2 | ;;; Commentary: | ||
3 | |||
4 | ;;; Code: | ||
5 | |||
6 | (setq erc-nick "bobbma" | ||
7 | erc-user-full-name "Jakub Dlugosz" | ||
8 | erc-notify-list '("akuleszaa")) | ||
9 | |||
10 | (defun hipis-znc () | ||
11 | (interactive) | ||
12 | (erc :server "195.74.91.18" | ||
13 | :port "6697")) | ||
14 | |||
15 | |||
16 | ;; Repair load paths when tramp try to connect to guix instances | ||
17 | (require 'tramp) | ||
18 | |||
19 | (connection-local-set-profile-variables | ||
20 | 'guix-system | ||
21 | '((tramp-remote-path . (tramp-own-remote-path)))) | ||
22 | |||
23 | (connection-local-set-profiles | ||
24 | '(:application tramp :protocol "sudo" :machine "localhost") | ||
25 | 'guix-system) | ||
26 | |||
27 | (connection-local-set-profiles | ||
28 | '(:application tramp :protocol "ssh" :machine "jdlugosz.com") | ||
29 | 'guix-system) | ||
30 | |||
31 | (provide 'jd-custom) | ||
32 | |||
33 | ;;; jd-custom.el ends here | ||