summaryrefslogtreecommitdiff
path: root/emacs.d/init.el
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-07-26 12:12:31 +0300
committerLars Wirzenius <liw@liw.fi>2021-07-26 12:12:31 +0300
commit6e1f77969c257253a624a18be0af444eba117708 (patch)
tree35e0522a87ce20aefceb050aee65c77a5433a3eb /emacs.d/init.el
parent89cc3516211dad09cc75f604d349498a4ca20680 (diff)
downloadliw-dot-files-6e1f77969c257253a624a18be0af444eba117708.tar.gz
enable tab-bar-mode by default in Emacs
Sponsored-by: author
Diffstat (limited to 'emacs.d/init.el')
-rw-r--r--emacs.d/init.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
index 66d1337..b94f3e3 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -120,7 +120,6 @@
(use-package company
:config
(setq company-tooltip-align-annotations t)
-; (define-key rust-mode-map (kbd "TAB") #'company-indent-or-complete-common)
(add-hook 'racer-mode-hook #'company-mode))
;; Minor mode for on-the-fly checks for various types of files.
@@ -130,8 +129,6 @@
;; Flycheck for the Rust language.
(use-package flycheck-rust)
-;;(with-eval-after-load 'rust-mode
-;; (add-hook 'flycheck-mode-hook #'flycheck-rust-setup))
;; Minor mode to color mode line based on how happy flycheck is.
(use-package flycheck-color-mode-line)
@@ -148,6 +145,9 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; UI tweaks.
+;; Use tab bar.
+(tab-bar-mode)
+
;; Don't show help at startup
(setq inhibit-startup-screen t)