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
(setq make-backup-files nil) ;; We dont need these
(setq auto-save-default nil) ;; Not this one either
(menu-bar-mode -1) ;; The menu bar looks ugly in terminal
(tool-bar-mode -1) ;; Nobody needs this
(setq make-backup-files nil
auto-save-default nil
inhibit-startup-screen t
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)
(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
(setq redisplay-dont-pause t
@@ -23,7 +25,7 @@
scroll-conservatively 10000
scroll-preserve-screen-position 1)
;; Show matching parenthesis
;; show matching parenthesis
(show-paren-mode t)
(setq show-paren-style 'paranthesis)
@@ -76,6 +78,7 @@
(use-package quelpa
:ensure t)
(use-package quelpa-use-package
:ensure t)
@@ -327,7 +330,7 @@
:ensure t
:defer t
: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-width 40
treemacs-project-follow-cleanup t
@@ -337,7 +340,7 @@
treemacs-recenter-after-tag-follow t
treemacs-tag-follow-delay 1)
(treemacs-tag-follow-mode t)
(treemacs-load-theme "doom-atom"))
(treemacs-load-theme "doom-atom")
:bind
(:map global-map
("C-x t t" . treemacs)))