diff options
author | Rasmus <rasmus.luha@gmail.com> | 2023-04-08 00:27:03 +0300 |
---|---|---|
committer | Rasmus <rasmus.luha@gmail.com> | 2023-04-08 00:27:03 +0300 |
commit | a16bdfe930d89e1a7fb354b78d16e8742118f76d (patch) | |
tree | f32aabd929a485ac24ea2b3fb1c9c9d041f27478 /config/.config/emacs/init.el |
checkers
Diffstat (limited to 'config/.config/emacs/init.el')
-rw-r--r-- | config/.config/emacs/init.el | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/config/.config/emacs/init.el b/config/.config/emacs/init.el new file mode 100644 index 0000000..9927994 --- /dev/null +++ b/config/.config/emacs/init.el @@ -0,0 +1,22 @@ +(org-babel-load-file (expand-file-name "~/.config/emacs/config.org")) +(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. + '(package-selected-packages + '(transpose-frame company-irony ag yasnippet-snippets yasnipets-snipets yasnippet flycheck ccls swiper smex ido-vertical-mode which-key lsp-pyright emmet-mode lsp-mode company magit projectile org-bullets key-chord evil-collection evil diminish all-the-icons doom-modeline dashboard afternoon-theme use-package)) + '(safe-local-variable-values + '((eval setq flycheck-clang-include-path + (list + (expand-file-name "~/code/kool/C/brfk/inc"))) + (eval setq flycheck-clang-include-path + (list + (expand-file-name "~/code/kool/C/projektorinjo/inc")))))) +(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. + ) +(put 'narrow-to-region 'disabled nil) |