Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankeidel committed Dec 10, 2023
1 parent d8c0ca2 commit 73f5bb3
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ gotools/
eln-cache/
.org-id-locations
tree-sitter/

quelpa/
2 changes: 2 additions & 0 deletions personal/combombulate.el
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@
;; Amend this to the directory where you keep Combobulate's source
;; code.
:load-path ("/Users/stefan.keidel/code/combobulate"))


15 changes: 15 additions & 0 deletions personal/copilot.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
(quelpa
'(quelpa-use-package
:fetcher git
:url "https://github.com/quelpa/quelpa-use-package.git"))
(require 'quelpa-use-package)


(use-package copilot
:quelpa (copilot :fetcher github
:repo "zerolfx/copilot.el"
:branch "main"
:files ("dist" "*.el")))

;; you can utilize :map :hook and :config to customize copilot
(add-hook 'prog-mode-hook 'copilot-mode)
1 change: 1 addition & 0 deletions personal/elfeed-feed-definitions.el
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@
; trying to keep taps on work stuff
("https://meltano.com/blog/feed/" data blog)
("https://roundup.getdbt.com/feed" data blog)
("https://www.ssp.sh/index.xml" data blog)
))

(setq-default elfeed-search-filter "@2-weeks-ago +unread ")
Expand Down
12 changes: 8 additions & 4 deletions personal/keybindings.el
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
(key-chord-define-global "jj" 'projectile-find-file)
(key-chord-define-global "jk" 'projectile-ag)
(key-chord-define-global "zz" 'avy-goto-char)
(key-chord-define-global "xx" 'avy-goto-line)
;(key-chord-mode -1)
;; (key-chord-define-global "jj" 'projectile-find-file)
;; (key-chord-define-global "jk" 'projectile-ag)
;; (key-chord-define-global "zz" 'avy-goto-char)
;; (key-chord-define-global "xx" 'avy-goto-line)

(global-set-key (kbd "s-.") 'mc/mark-next-like-this)
(global-set-key (kbd "s-d") 'mc/mark-all-like-this)
(global-set-key (kbd "s-,") 'easy-mark)
(global-set-key (kbd "s-f") 'projectile-ag)
(global-set-key (kbd "s-z") 'avy-goto-char)

(global-set-key (kbd "C-c c") 'counsel-org-capture)

(global-set-key (kbd "C-x w") 'elfeed)
Expand Down
26 changes: 13 additions & 13 deletions personal/layout.el
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
(set-face-attribute 'variable-pitch nil
:family "Hack Nerd Font")

(set-face-foreground 'secondary-selection "skyblue")
(set-face-background 'secondary-selection "darkblue")
;; (set-face-foreground 'secondary-selection "black")
;; (set-face-background 'secondary-selection "blue")

;; (require 'doom-modeline)
;; (doom-modeline-mode 1)
Expand All @@ -31,18 +31,18 @@
;; start every frame maximized
;(toggle-frame-fullscreen)

(use-package perspective
:ensure t
:bind
("s-e" . persp-ivy-switch-buffer) ; or use a nicer switcher, see below
:custom
(persp-mode-prefix-key (kbd "s-x")) ; pick your own prefix key here
:init
(persp-mode))
;; (use-package perspective
;; :ensure t
;; :bind
;; ("s-e" . persp-ivy-switch-buffer) ; or use a nicer switcher, see below
;; :custom
;; (persp-mode-prefix-key (kbd "s-x")) ; pick your own prefix key here
;; :init
;; (persp-mode))

(use-package fancy-battery :ensure t)
;; (use-package fancy-battery :ensure t)

(use-package ztree :ensure t)
;(use-package ztree :ensure t)

(use-package doom-themes
:ensure t
Expand All @@ -57,7 +57,7 @@
;; Enable custom neotree theme (all-the-icons must be installed!)
(doom-themes-neotree-config)
;; or for treemacs users
;(setq doom-themes-treemacs-theme "doom-solarized-dark") ; use "doom-colors" for less minimal icon theme
(setq doom-themes-treemacs-theme "doom-colors") ; use "doom-colors" for less minimal icon theme
(doom-themes-treemacs-config)
;; Corrects (and improves) org-mode's native fontification.
(doom-themes-org-config))
Expand Down
6 changes: 2 additions & 4 deletions personal/preload/theme.el
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;(setq projectile-indexing-method 'alien)
;(setq projectile-enable-caching t)
;(setq prelude-theme 'zenburn)
(setq prelude-theme 'solarized-dark)
;(setq prelude-theme 'solarized-dark)

(setq solarized-termcolors 256)
(setq solarized-broken-srgb t)
Expand All @@ -26,7 +26,7 @@
(require 'spaceline-config)
(spaceline-emacs-theme)
(spaceline-toggle-minor-modes-off)
(spaceline-toggle-battery-on)
;(spaceline-toggle-battery-on)


;(setq prelude-theme 'base16-zenburn)
Expand Down Expand Up @@ -64,5 +64,3 @@
;; ein
;; use-package
;; plantuml-mode
(use-package use-package-chords
:ensure t)
2 changes: 1 addition & 1 deletion personal/prelude-modules.el
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
;; (require 'prelude-helm) ;; Interface for narrowing and search
;; (require 'prelude-helm-everywhere) ;; Enable Helm everywhere
(require 'prelude-company)
(require 'prelude-key-chord) ;; Binds useful features to key combinations
;(require 'prelude-key-chord) ;; Binds useful features to key combinations
;; (require 'prelude-evil)

;;; Programming languages support
Expand Down

0 comments on commit 73f5bb3

Please sign in to comment.