Indentation fixes

This commit is contained in:
Marco Thomas
2021-07-21 10:26:29 +02:00
parent cb1eea898b
commit 2ada5af3b0

View File

@@ -6,15 +6,17 @@
; ;
; ~ M. Thomas ; ~ M. Thomas
(setq make-backup-files nil) ;; We dont need these (setq make-backup-files nil
(setq auto-save-default nil) ;; Not this one either auto-save-default nil
(menu-bar-mode -1) ;; The menu bar looks ugly in terminal inhibit-startup-screen t
(tool-bar-mode -1) ;; Nobody needs this tramp-default-method "ssh"
initial-major-mode 'fundamental-mode
initial-scratch-message nil)
;; remove ugly bars
(menu-bar-mode -1)
(tool-bar-mode -1)
(scroll-bar-mode -1) (scroll-bar-mode -1)
(setq inhibit-startup-screen t) ;; Leave me alone with your tutorials
(setq tramp-default-method "ssh") ;; speed up tramp mode
(setq initial-major-mode 'fundamental-mode) ;; better startup speed
(setq initial-scratch-message nil) ;; don't show me help at startup
;; smooth scrolling ;; smooth scrolling
(setq redisplay-dont-pause t (setq redisplay-dont-pause t
@@ -23,7 +25,7 @@
scroll-conservatively 10000 scroll-conservatively 10000
scroll-preserve-screen-position 1) scroll-preserve-screen-position 1)
;; Show matching parenthesis ;; show matching parenthesis
(show-paren-mode t) (show-paren-mode t)
(setq show-paren-style 'paranthesis) (setq show-paren-style 'paranthesis)
@@ -76,6 +78,7 @@
(use-package quelpa (use-package quelpa
:ensure t) :ensure t)
(use-package quelpa-use-package (use-package quelpa-use-package
:ensure t) :ensure t)
@@ -327,7 +330,7 @@
:ensure t :ensure t
:defer t :defer t
:config :config
(progn (setq treemacs-follow-after-init t (setq treemacs-follow-after-init t
treemacs-persist-file (expand-file-name ".cache/treemacs-persist" user-emacs-directory) treemacs-persist-file (expand-file-name ".cache/treemacs-persist" user-emacs-directory)
treemacs-width 40 treemacs-width 40
treemacs-project-follow-cleanup t treemacs-project-follow-cleanup t
@@ -337,7 +340,7 @@
treemacs-recenter-after-tag-follow t treemacs-recenter-after-tag-follow t
treemacs-tag-follow-delay 1) treemacs-tag-follow-delay 1)
(treemacs-tag-follow-mode t) (treemacs-tag-follow-mode t)
(treemacs-load-theme "doom-atom")) (treemacs-load-theme "doom-atom")
:bind :bind
(:map global-map (:map global-map
("C-x t t" . treemacs))) ("C-x t t" . treemacs)))