Skip to content

Commit

Permalink
Local customizations
Browse files Browse the repository at this point in the history
  • Loading branch information
jmuhlich committed Feb 21, 2024
1 parent 7aa4ae9 commit 4b92785
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 0 deletions.
2 changes: 2 additions & 0 deletions personal/alist.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
;; Nextflow
(add-to-list 'auto-mode-alist '("\\.nf\\'" . groovy-mode))
30 changes: 30 additions & 0 deletions personal/custom.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
(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.
'(company-quickhelp-color-background "#4F4F4F")
'(company-quickhelp-color-foreground "#DCDCCC")
'(custom-safe-themes
'("7f1d414afda803f3244c6fb4c2c64bea44dac040ed3731ec9d75275b9e831fe5" default))
'(package-selected-packages
'(ripgrep rjsx-mode helm-projectile helm async avy dash dash-functional f gh git-commit ht json-snatcher logito lsp-mode markdown-mode marshal pcache pythonic s spinner transient with-editor rust-mode dockerfile-mode ag groovy-mode csv-mode cython-mode solarized-theme yaml-mode web-mode scss-mode company-anaconda anaconda-mode lsp-ui company-lsp json-mode js2-mode rainbow-mode elisp-slime-nav rainbow-delimiters company counsel swiper ivy exec-path-from-shell zop-to-char zenburn-theme which-key volatile-highlights undo-tree super-save smartrep smartparens operate-on-number nlinum move-text magit projectile imenu-anywhere hl-todo guru-mode gitignore-mode gitconfig-mode git-timemachine gist flycheck expand-region epl editorconfig easy-kill diminish diff-hl discover-my-major crux browse-kill-ring beacon anzu ace-window))
'(pdf-view-midnight-colors '("#DCDCCC" . "#383838"))
'(prelude-auto-save nil)
'(prelude-guru nil)
'(safe-local-variable-values
'((whitespace-mode . 1)
(whitespace-mode)
(prelude-whitespace . t)
(prelude-whitespace)))
'(split-height-threshold nil)
'(super-save-mode nil)
'(tramp-use-ssh-controlmaster-options nil)
'(whitespace-style '(face trailing tabs empty)))
(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.
)
(global-nlinum-mode 1)
4 changes: 4 additions & 0 deletions personal/preload/main.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
(setq prelude-theme 'solarized-dark-high-contrast)
(setq prelude-minimalistic-ui t)
(setq prelude-flyspell nil)
(setq prelude-clean-whitespace-on-save nil)
42 changes: 42 additions & 0 deletions personal/prelude-modules.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
;;; Uncomment the modules you'd like to use and restart Prelude afterwards

;; Emacs IRC client
;; (require 'prelude-erc)
;; (require 'prelude-ido) ;; Super charges Emacs completion for C-x C-f and more
(require 'prelude-ivy) ;; A mighty modern alternative to ido
;; (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-evil)

;;; Programming languages support
(require 'prelude-c)
;; (require 'prelude-clojure)
;; (require 'prelude-coffee)
;; (require 'prelude-common-lisp)
(require 'prelude-css)
;; (require 'prelude-dart)
(require 'prelude-emacs-lisp)
;; (require 'prelude-erlang)
;; (require 'prelude-elixir)
;; (require 'prelude-go)
;; (require 'prelude-haskell)
(require 'prelude-js)
;; (require 'prelude-latex)
(require 'prelude-lisp)
(require 'prelude-lsp)
;; (require 'prelude-ocaml)
(require 'prelude-org) ;; Org-mode helps you keep TODO lists, notes and more
;; (require 'prelude-perl)
(require 'prelude-python)
;; (require 'prelude-ruby)
;; (require 'prelude-rust)
;; (require 'prelude-scala)
;; (require 'prelude-scheme)
(require 'prelude-shell)
(require 'prelude-scss)
;; (require 'prelude-ts)
(require 'prelude-web) ;; Emacs mode for web templates
(require 'prelude-xml)
(require 'prelude-yaml)

0 comments on commit 4b92785

Please sign in to comment.