Browse Source

org-bullets, company(auto-complete),

ubuntu
parent
commit
4f3f96818c
1 changed files with 16 additions and 3 deletions
  1. +16
    -3
      .emacs

+ 16
- 3
.emacs View File

@ -90,8 +90,7 @@
:config :config
(progn (progn
(setq treemacs-is-never-other-window t) (setq treemacs-is-never-other-window t)
(setq treemacs-width 35)
)
(setq treemacs-width 35))
:bind :bind
(:map global-map (:map global-map
("M-0" . treemacs-select-window) ("M-0" . treemacs-select-window)
@ -116,9 +115,23 @@
:bind :bind
("C-=" . er/expand-region) ("C-=" . er/expand-region)
("C--" . er/contract-region)) ("C--" . er/contract-region))
;; org-bullets
(use-package org-bullets
:ensure t
:init
(setq org-support-shift-select t)
:config
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))))
;; Company-mode
(use-package company
:ensure t
:init
(add-hook 'after-init-hook 'global-company-mode))
;; aspell ;; aspell
;; Set default font: ;; Set default font:
(add-to-list 'default-frame-alist (add-to-list 'default-frame-alist
'(font . "Source Code Pro-18")) '(font . "Source Code Pro-18"))
@ -132,7 +145,7 @@
("2f1518e906a8b60fac943d02ad415f1d8b3933a5a7f75e307e6e9a26ef5bf570" "fe94e2e42ccaa9714dd0f83a5aa1efeef819e22c5774115a9984293af609fce7" default))) ("2f1518e906a8b60fac943d02ad415f1d8b3933a5a7f75e307e6e9a26ef5bf570" "fe94e2e42ccaa9714dd0f83a5aa1efeef819e22c5774115a9984293af609fce7" default)))
'(package-selected-packages '(package-selected-packages
(quote (quote
(expand-region flycheck treemacs-projectile treemacs magit auctex dashboard helm-projectile helm doom-modeline doom-themes which-key use-package projectile))))
(company org-bullets expand-region flycheck treemacs-projectile treemacs magit auctex dashboard helm-projectile helm doom-modeline doom-themes which-key use-package projectile))))
(custom-set-faces (custom-set-faces
;; custom-set-faces was added by Custom. ;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful. ;; If you edit it by hand, you could mess it up, so be careful.


Loading…
Cancel
Save