Tabbar ability has been added

This commit is contained in:
Sameer Rahmani 2019-03-27 18:52:29 +00:00
parent c1efcd482d
commit be228f5663
4 changed files with 22 additions and 15 deletions

View File

@ -12,7 +12,9 @@
;; ABILITIES ;; ABILITIES
;; ========= ;; =========
;; Disable abilities which you don't want. ;; 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 ;; EXTENSIONS

View File

@ -74,6 +74,9 @@
(with-ability emoji (with-ability emoji
(depends-on 'emojify)) (depends-on 'emojify))
(with-ability tabbar
(depends-on 'tabbar))
(if (eq system-type 'darwin) (if (eq system-type 'darwin)
(depends-on 'exec-path-from-shell)) (depends-on 'exec-path-from-shell))

View File

@ -290,6 +290,8 @@
;; (with-ability ido ;; (with-ability ido
;; (global-set-key (kbd "C-x b") 'ido-switch-buffer))) ;; (global-set-key (kbd "C-x b") 'ido-switch-buffer)))
(ability tabbar ()
(tabbar-mode 1))
;; Helm ----------------------------------------------------- ;; Helm -----------------------------------------------------
(ability helm () (ability helm ()
"Helm is an emacs incremental completion and selection narrowing framework" "Helm is an emacs incremental completion and selection narrowing framework"
@ -337,24 +339,24 @@
(add-hook 'after-init-hook #'global-emojify-mode)) (add-hook 'after-init-hook #'global-emojify-mode))
(set-fontset-font "fontset-default" (set-fontset-font "fontset-default"
(cons (decode-char 'ucs #x0627) (cons (decode-char 'ucs #x0627)
(decode-char 'ucs #x0649)) (decode-char 'ucs #x0649))
"Vazir") "Vazir")
(set-fontset-font "fontset-default" (set-fontset-font "fontset-default"
(cons (decode-char 'ucs #xFE8D) (cons (decode-char 'ucs #xFE8D)
(decode-char 'ucs #xFEF0)) (decode-char 'ucs #xFEF0))
"Vazir") "Vazir")
(set-fontset-font "fontset-default" (set-fontset-font "fontset-default"
(cons (decode-char 'ucs #x064e) (cons (decode-char 'ucs #x064e)
(decode-char 'ucs #x06a9)) (decode-char 'ucs #x06a9))
"Vazir") "Vazir")
(set-fontset-font "fontset-default" (set-fontset-font "fontset-default"
(cons (decode-char 'ucs #x06F0) (cons (decode-char 'ucs #x06F0)
(decode-char 'ucs #x00A0)) (decode-char 'ucs #x00A0))
"Vazir") "Vazir")
;; Backup files --------------------------------------------- ;; Backup files ---------------------------------------------
;; Put them in one nice place if possible ;; Put them in one nice place if possible
(if (file-directory-p "~/.backup") (if (file-directory-p "~/.backup")

View File

@ -7,7 +7,7 @@
((eq 'line face) (if active 'shadow 'shadow)) ((eq 'line face) (if active 'shadow 'shadow))
((eq 'highlight face) (if active 'match 'shadow)))) ((eq 'highlight face) (if active 'match 'shadow))))
(defun themes/color-theme-doom-one () (defun themes/color-theme-dracula ()
(interactive) (interactive)
;; Global settings (defaults) ;; Global settings (defaults)
@ -38,4 +38,4 @@
(doom-themes-neotree-config)) (doom-themes-neotree-config))
(provide 'themes/color-theme-doom-one) (provide 'themes/color-theme-dracula)