diff --git a/config/fg42.user.el b/config/fg42.user.el index a943943..b0d2eb5 100644 --- a/config/fg42.user.el +++ b/config/fg42.user.el @@ -12,7 +12,9 @@ ;; ABILITIES ;; ========= ;; Disable abilities which you don't want. -(disable 'rbenv 'helm 'spell 'linum 'smart-mode-line 'desktop-mode 'dired+ 'guru 'emoji 'elpy 'github) +(disable 'rbenv 'helm 'spell 'linum 'tabbar + 'smart-mode-line 'desktop-mode + 'dired+ 'guru 'emoji 'elpy 'github) ;; EXTENSIONS diff --git a/lib/extensions/editor.el b/lib/extensions/editor.el index d38809f..901961b 100644 --- a/lib/extensions/editor.el +++ b/lib/extensions/editor.el @@ -74,6 +74,9 @@ (with-ability emoji (depends-on 'emojify)) +(with-ability tabbar + (depends-on 'tabbar)) + (if (eq system-type 'darwin) (depends-on 'exec-path-from-shell)) diff --git a/lib/extensions/editor/init.el b/lib/extensions/editor/init.el index c11a714..820d0bb 100644 --- a/lib/extensions/editor/init.el +++ b/lib/extensions/editor/init.el @@ -290,6 +290,8 @@ ;; (with-ability ido ;; (global-set-key (kbd "C-x b") 'ido-switch-buffer))) + (ability tabbar () + (tabbar-mode 1)) ;; Helm ----------------------------------------------------- (ability helm () "Helm is an emacs incremental completion and selection narrowing framework" @@ -337,24 +339,24 @@ (add-hook 'after-init-hook #'global-emojify-mode)) (set-fontset-font "fontset-default" - (cons (decode-char 'ucs #x0627) - (decode-char 'ucs #x0649)) - "Vazir") + (cons (decode-char 'ucs #x0627) + (decode-char 'ucs #x0649)) + "Vazir") (set-fontset-font "fontset-default" - (cons (decode-char 'ucs #xFE8D) - (decode-char 'ucs #xFEF0)) - "Vazir") + (cons (decode-char 'ucs #xFE8D) + (decode-char 'ucs #xFEF0)) + "Vazir") (set-fontset-font "fontset-default" - (cons (decode-char 'ucs #x064e) - (decode-char 'ucs #x06a9)) - "Vazir") + (cons (decode-char 'ucs #x064e) + (decode-char 'ucs #x06a9)) + "Vazir") (set-fontset-font "fontset-default" - (cons (decode-char 'ucs #x06F0) - (decode-char 'ucs #x00A0)) - "Vazir") + (cons (decode-char 'ucs #x06F0) + (decode-char 'ucs #x00A0)) + "Vazir") ;; Backup files --------------------------------------------- ;; Put them in one nice place if possible (if (file-directory-p "~/.backup") diff --git a/lib/themes/color-theme-dracula.el b/lib/themes/color-theme-dracula.el index 677f77a..b2d8513 100644 --- a/lib/themes/color-theme-dracula.el +++ b/lib/themes/color-theme-dracula.el @@ -7,7 +7,7 @@ ((eq 'line face) (if active 'shadow 'shadow)) ((eq 'highlight face) (if active 'match 'shadow)))) -(defun themes/color-theme-doom-one () +(defun themes/color-theme-dracula () (interactive) ;; Global settings (defaults) @@ -38,4 +38,4 @@ (doom-themes-neotree-config)) -(provide 'themes/color-theme-doom-one) +(provide 'themes/color-theme-dracula)