diff options
Diffstat (limited to '.config/.emacs')
-rw-r--r-- | .config/.emacs | 32 |
1 files changed, 7 insertions, 25 deletions
diff --git a/.config/.emacs b/.config/.emacs index 8492a0b..bf680b1 100644 --- a/.config/.emacs +++ b/.config/.emacs @@ -1,31 +1,13 @@ +;; modes (menu-bar-mode 0) (tool-bar-mode 0) (scroll-bar-mode 0) +(ido-mode) +;; visual (setq inhibit-startup-screen t) +(set-default 'truncate-lines t) +(add-to-list 'default-frame-alist '(font . "Iosevka-14")) -(add-to-list 'default-frame-alist '(font . "PxPlus IBM VGA 8x16-12")) - -(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. - '(custom-enabled-themes '(apropospriate-dark)) - '(custom-safe-themes - '("f1b2de4bc88d1120782b0417fe97f97cc9ac7c5798282087d4d1d9290e3193bb" - "b6c43bb2aea78890cf6bd4a970e6e0277d2daf0075272817ea8bb53f9c6a7f0a" - "0ed3d96a506b89c1029a1ed904b11b5adcebeb2e0c16098c99c0ad95cb124729" - "b273cc6a1d492660fff886a3cae1f00d5fd2d53b55fb374a21a14afd74fdec92" - "d80952c58cf1b06d936b1392c38230b74ae1a2a6729594770762dc0779ac66b7" - "da75eceab6bea9298e04ce5b4b07349f8c02da305734f7c0c8c6af7b5eaa9738" - default)) - '(package-selected-packages - '(ample-theme anti-zenburn-theme apropospriate-theme gruvbox-theme - rfc-mode))) -(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. - ) +;; keymaps +(keymap-global-set "C-c c" 'compile) |