Compare commits
No commits in common. "2f73f51597e3071ef3dbc0772c81762e609a6938" and "00f3b21d90e5d3cfec7078cabbe416b901fe6d3d" have entirely different histories.
2f73f51597
...
00f3b21d90
@ -43,7 +43,6 @@ This function should only modify configuration layer settings."
|
||||
(auto-completion :variables
|
||||
auto-completion-return-key-behavior 'complete
|
||||
auto-completion-tab-key-behavior 'cycle)
|
||||
syntax-checking
|
||||
emacs-lisp
|
||||
git
|
||||
markdown
|
||||
@ -54,6 +53,7 @@ This function should only modify configuration layer settings."
|
||||
shell-default-position 'bottom
|
||||
shell-default-shell 'eshell
|
||||
shell-enable-smart-eshell t)
|
||||
syntax-checking
|
||||
(version-control :variables
|
||||
version-control-diff-tool 'diff-hl
|
||||
version-control-diff-side 'left
|
||||
@ -64,8 +64,8 @@ This function should only modify configuration layer settings."
|
||||
(c-c++ :variables
|
||||
c-c++-default-mode-for-headers 'c++-mode
|
||||
c-c++-backend 'lsp-ccls)
|
||||
;;(java :variables
|
||||
;;java-backend 'lsp)
|
||||
(java :variables
|
||||
java-backend 'lsp)
|
||||
shell-scripts
|
||||
spacemacs-layouts
|
||||
dap
|
||||
@ -83,13 +83,6 @@ This function should only modify configuration layer settings."
|
||||
pdf
|
||||
(plantuml :variables
|
||||
org-plantuml-jar-path "~/Documents/Uni/DDSI/Code/PlantUML/plantuml.jar")
|
||||
major-modes
|
||||
javascript
|
||||
html
|
||||
(go :variables
|
||||
go-backend 'lsp
|
||||
go-tab-width 4
|
||||
go-format-before-save t)
|
||||
)
|
||||
|
||||
;; List of additional packages that will be installed without being
|
||||
@ -122,8 +115,6 @@ This function should only modify configuration layer settings."
|
||||
flycheck-rtags
|
||||
ivy-rtags
|
||||
helm-bibtex
|
||||
helm-core
|
||||
helm
|
||||
)
|
||||
|
||||
;; Defines the behaviour of Spacemacs when installing packages.
|
||||
@ -260,7 +251,7 @@ It should only modify the values of Spacemacs settings."
|
||||
;; Default font, or prioritized list of fonts. `powerline-scale' allows to
|
||||
;; quickly tweak the mode-line size to make separators look not too crappy.
|
||||
dotspacemacs-default-font '("Iosevka"
|
||||
:size 16
|
||||
:size 14
|
||||
:weight normal
|
||||
:width normal)
|
||||
|
||||
@ -348,7 +339,7 @@ It should only modify the values of Spacemacs settings."
|
||||
;; If non-nil a progress bar is displayed when spacemacs is loading. This
|
||||
;; may increase the boot time on some systems and emacs builds, set it to
|
||||
;; nil to boost the loading time. (default t)
|
||||
dotspacemacs-loading-progress-bar nil
|
||||
dotspacemacs-loading-progress-bar t
|
||||
|
||||
;; If non-nil the frame is fullscreen when Emacs starts up. (default nil)
|
||||
;; (Emacs 24.4+ only)
|
||||
@ -519,7 +510,7 @@ before packages are loaded."
|
||||
; Function Keybindings
|
||||
(global-set-key [f3] 'other-window)
|
||||
(global-set-key [f4] 'ivy-switch-buffer)
|
||||
(global-set-key [f5] 'delete-window)
|
||||
(global-set-key [f5] 'delete-other-windows)
|
||||
(global-set-key [f6] 'counsel-recentf)
|
||||
(windmove-default-keybindings)
|
||||
; Add dired in recentf
|
||||
@ -536,8 +527,7 @@ before packages are loaded."
|
||||
(message "No Compilation Errors!")))))
|
||||
(setq magit-repository-directories
|
||||
'(("/home/coolneng/Documents/Uni/" . 6)
|
||||
("/home/coolneng/.dotfiles/" . 0)
|
||||
("/home/coolneng/Projects" . 3)))
|
||||
("/home/coolneng/.dotfiles/" . 0)))
|
||||
; lsp-ui variables
|
||||
(setq lsp-ui-doc-enable nil
|
||||
lsp-ui-sideline-show-hover t)
|
||||
@ -550,13 +540,19 @@ before packages are loaded."
|
||||
(add-to-list 'auto-mode-alist '("\\.tpp\\'" . c++-mode))
|
||||
(add-to-list 'auto-mode-alist '("\\.aiml\\'" . web-mode))
|
||||
(add-to-list 'auto-mode-alist '("\\.latex\\'" . latex-mode))
|
||||
(add-to-list 'auto-mode-alist '("\\.le\\'" . c-mode))
|
||||
; Add TODO files to the org-agenda
|
||||
(with-eval-after-load 'org-agenda
|
||||
(require 'org-projectile)
|
||||
(mapcar '(lambda (file)
|
||||
(when (file-exists-p file)
|
||||
(push file org-agenda-files)))
|
||||
(org-projectile-todo-files)))
|
||||
; Disable company-mode in org
|
||||
(spacemacs|disable-company org-mode)
|
||||
; Add bibliography file to org-ref
|
||||
(setq org-ref-default-bibliography '("~/Documents/Uni/DDSI/Code/IGDB/Assets/Citations.bib"))
|
||||
; Auto cleanup recentf
|
||||
(setq recentf-auto-cleanup 120)
|
||||
(setq recentf-auto-cleanup '120)
|
||||
; Save backup files to ~/.cache
|
||||
(setq backup-directory-alist `(("." . "~/.cache")))
|
||||
; Redirect stdout to results in org for python
|
||||
@ -564,11 +560,6 @@ before packages are loaded."
|
||||
'((:exports . "both")
|
||||
(:preamble . "from __future__ import print_function")
|
||||
(:results . "output")))
|
||||
; Add TODO states in org
|
||||
(setq org-todo-keywords '((sequence "TODO" "NEXT" "INACTIVE" "|" "DONE")))
|
||||
(setq org-todo-keyword-faces
|
||||
'(("INACTIVE" . "violet")
|
||||
("NEXT" . "turquoise")))
|
||||
)
|
||||
|
||||
;; Do not write anything past this comment. This is where Emacs will
|
||||
@ -611,12 +602,10 @@ This function is called at the very end of Spacemacs initialization."
|
||||
'(jdee-db-requested-breakpoint-face-colors (cons "#f0f0f0" "#50a14f"))
|
||||
'(jdee-db-spec-breakpoint-face-colors (cons "#f0f0f0" "#9ca0a4"))
|
||||
'(objed-cursor-color "#e45649")
|
||||
'(org-agenda-files
|
||||
(quote
|
||||
("~/Notes/Uni.org" "~/Documents/Uni/DDSI/Code/IGDB/Design.org" "~/Projects/Titank/Organization.org" "~/Notes/Projects.org" "~/Notes/Education.org")))
|
||||
'(org-agenda-files (quote ("~/Documents/Uni/DDSI/Code/P1/Design.org")))
|
||||
'(package-selected-packages
|
||||
(quote
|
||||
(yapfify yaml-mode xterm-color which-key wgrep web-mode use-package tagedit smex smeargle smartparens slim-mode shell-pop scss-mode sass-mode pyvenv pytest pyenv-mode py-isort pug-mode pip-requirements persp-mode pcre2el pandoc-mode ox-pandoc ht orgit org-plus-contrib multi-term markdown-toc markdown-mode magit-gitflow magit-popup magit macrostep live-py-mode ivy-hydra insert-shebang hydra lv hy-mode dash-functional helm-make haml-mode gitignore-mode gitconfig-mode gitattributes-mode git-timemachine git-messenger git-link git-gutter-fringe+ git-gutter-fringe fringe-helper git-gutter+ git-gutter gh-md fuzzy flycheck-pos-tip pos-tip flycheck flx fish-mode eyebrowse exec-path-from-shell transient git-commit with-editor evil-escape goto-chg eshell-z eshell-prompt-extras esh-help emmet-mode elisp-slime-nav doom-modeline shrink-path disaster diminish diff-hl cython-mode counsel-projectile projectile pkg-info epl counsel swiper ivy company-web web-completion-data company-statistics company-shell company-emacs-eclim eclim company-c-headers company-auctex company-anaconda company cmake-mode clang-format bind-map bind-key auto-yasnippet yasnippet auto-compile packed async anaconda-mode pythonic f s all-the-icons memoize ace-window avy ac-ispell auto-complete popup doom-themes dash)))
|
||||
(ivy-bibtex helm-bibtex helm yapfify yaml-mode xterm-color which-key wgrep web-mode use-package tagedit smex smeargle smartparens slim-mode shell-pop scss-mode sass-mode pyvenv pytest pyenv-mode py-isort pug-mode pip-requirements persp-mode pcre2el pandoc-mode ox-pandoc ht orgit org-plus-contrib multi-term markdown-toc markdown-mode magit-gitflow magit-popup magit macrostep live-py-mode ivy-hydra insert-shebang hydra lv hy-mode dash-functional helm-make haml-mode gitignore-mode gitconfig-mode gitattributes-mode git-timemachine git-messenger git-link git-gutter-fringe+ git-gutter-fringe fringe-helper git-gutter+ git-gutter gh-md fuzzy flycheck-pos-tip pos-tip flycheck flx fish-mode eyebrowse exec-path-from-shell transient git-commit with-editor evil-escape goto-chg eshell-z eshell-prompt-extras esh-help emmet-mode elisp-slime-nav doom-modeline shrink-path disaster diminish diff-hl cython-mode counsel-projectile projectile pkg-info epl counsel swiper ivy company-web web-completion-data company-statistics company-shell company-emacs-eclim eclim company-c-headers company-auctex company-anaconda company cmake-mode clang-format bind-map bind-key auto-yasnippet yasnippet auto-compile packed async anaconda-mode pythonic f s all-the-icons memoize ace-window avy ac-ispell auto-complete popup doom-themes dash)))
|
||||
'(pdf-view-midnight-colors (quote ("#655370" . "#fbf8ef")))
|
||||
'(safe-local-variable-values
|
||||
(quote
|
||||
|
Loading…
Reference in New Issue
Block a user