Compare commits
No commits in common. "4c99289c01757ff31ff954cc5d241ea998ca6877" and "3d432c2f6e3822d2f11c4c9570e690a2409509ec" have entirely different histories.
4c99289c01
...
3d432c2f6e
3 changed files with 66 additions and 20 deletions
|
@ -1,14 +0,0 @@
|
||||||
#
|
|
||||||
# Metail SSO
|
|
||||||
#
|
|
||||||
[sso-session metail]
|
|
||||||
sso_region=eu-west-1
|
|
||||||
sso_start_url=https://d-93676d306a.awsapps.com/start/
|
|
||||||
sso_registration_scopes=sso:account:access
|
|
||||||
|
|
||||||
[profile testing-admin]
|
|
||||||
sso_session=metail
|
|
||||||
region=eu-west-1
|
|
||||||
output=json
|
|
||||||
sso_account_id=779362500905
|
|
||||||
sso_role_name=AWSAdministratorAccess
|
|
64
dotfiles/emacs/.config/doom/custom.el
Normal file
64
dotfiles/emacs/.config/doom/custom.el
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
(custom-set-variables
|
||||||
|
;; custom-set-variables was added by Custom.
|
||||||
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
;; Your init file should contain only one such instance.
|
||||||
|
;; If there is more than one, they won't work right.
|
||||||
|
'(denote-directory "/home/ray/Workspace/personal/notes")
|
||||||
|
'(safe-local-variable-values
|
||||||
|
'((eval progn
|
||||||
|
(require 'lisp-mode)
|
||||||
|
(defun emacs27-lisp-fill-paragraph
|
||||||
|
(&optional justify)
|
||||||
|
(interactive "P")
|
||||||
|
(or
|
||||||
|
(fill-comment-paragraph justify)
|
||||||
|
(let
|
||||||
|
((paragraph-start
|
||||||
|
(concat paragraph-start "\\|\\s-*\\([(;\"]\\|\\s-:\\|`(\\|#'(\\)"))
|
||||||
|
(paragraph-separate
|
||||||
|
(concat paragraph-separate "\\|\\s-*\".*[,\\.]$"))
|
||||||
|
(fill-column
|
||||||
|
(if
|
||||||
|
(and
|
||||||
|
(integerp emacs-lisp-docstring-fill-column)
|
||||||
|
(derived-mode-p 'emacs-lisp-mode))
|
||||||
|
emacs-lisp-docstring-fill-column fill-column)))
|
||||||
|
(fill-paragraph justify))
|
||||||
|
t))
|
||||||
|
(setq-local fill-paragraph-function #'emacs27-lisp-fill-paragraph))
|
||||||
|
(eval modify-syntax-entry 43 "'")
|
||||||
|
(eval modify-syntax-entry 36 "'")
|
||||||
|
(eval modify-syntax-entry 126 "'")
|
||||||
|
(geiser-repl-per-project-p . t)
|
||||||
|
(eval with-eval-after-load 'yasnippet
|
||||||
|
(let
|
||||||
|
((guix-yasnippets
|
||||||
|
(expand-file-name "etc/snippets/yas"
|
||||||
|
(locate-dominating-file default-directory ".dir-locals.el"))))
|
||||||
|
(unless
|
||||||
|
(member guix-yasnippets yas-snippet-dirs)
|
||||||
|
(add-to-list 'yas-snippet-dirs guix-yasnippets)
|
||||||
|
(yas-reload-all))))
|
||||||
|
(eval with-eval-after-load 'tempel
|
||||||
|
(if
|
||||||
|
(stringp tempel-path)
|
||||||
|
(setq tempel-path
|
||||||
|
(list tempel-path)))
|
||||||
|
(let
|
||||||
|
((guix-tempel-snippets
|
||||||
|
(concat
|
||||||
|
(expand-file-name "etc/snippets/tempel"
|
||||||
|
(locate-dominating-file default-directory ".dir-locals.el"))
|
||||||
|
"/*.eld")))
|
||||||
|
(unless
|
||||||
|
(member guix-tempel-snippets tempel-path)
|
||||||
|
(add-to-list 'tempel-path guix-tempel-snippets))))
|
||||||
|
(eval setq-local guix-directory
|
||||||
|
(locate-dominating-file default-directory ".dir-locals.el"))
|
||||||
|
(eval add-to-list 'completion-ignored-extensions ".go"))))
|
||||||
|
(custom-set-faces
|
||||||
|
;; custom-set-faces was added by Custom.
|
||||||
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
;; Your init file should contain only one such instance.
|
||||||
|
;; If there is more than one, they won't work right.
|
||||||
|
)
|
|
@ -19,9 +19,7 @@
|
||||||
(home-environment
|
(home-environment
|
||||||
;; Below is the list of packages that will show up in your
|
;; Below is the list of packages that will show up in your
|
||||||
;; Home profile, under ~/.guix-home/profile.
|
;; Home profile, under ~/.guix-home/profile.
|
||||||
(packages (specifications->packages (list "awscli"
|
(packages (specifications->packages (list "cmake"
|
||||||
"aws-vault"
|
|
||||||
"cmake"
|
|
||||||
"diffstat"
|
"diffstat"
|
||||||
"emacs-no-x"
|
"emacs-no-x"
|
||||||
"gcc-toolchain"
|
"gcc-toolchain"
|
||||||
|
@ -79,9 +77,7 @@
|
||||||
(environment-variables '(("GPG_TTY" . "$(tty)")
|
(environment-variables '(("GPG_TTY" . "$(tty)")
|
||||||
("ALTERNATE_EDITOR" . "")
|
("ALTERNATE_EDITOR" . "")
|
||||||
("EDITOR" . "emacsclient --tty")
|
("EDITOR" . "emacsclient --tty")
|
||||||
("VISUAL" . "emacsclient")
|
("VISUAL" . "emacsclient")))
|
||||||
("AWS_VAULT_BACKEND" . "pass")
|
|
||||||
("AWS_VAULT_PASS_PREFIX" . "awsvault")))
|
|
||||||
(aliases '())))
|
(aliases '())))
|
||||||
(service home-dotfiles-service-type
|
(service home-dotfiles-service-type
|
||||||
(home-dotfiles-configuration
|
(home-dotfiles-configuration
|
||||||
|
|
Loading…
Add table
Reference in a new issue