From aece6302ec2bea7f000cb2eb28ab4297225fe190 Mon Sep 17 00:00:00 2001 From: Blendoit Date: Fri, 4 Sep 2020 17:39:24 -0700 Subject: Powerline & Yasnippet --- blendoit/blendoit-init.org | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) (limited to 'blendoit/blendoit-init.org') diff --git a/blendoit/blendoit-init.org b/blendoit/blendoit-init.org index 169b709..621b20f 100644 --- a/blendoit/blendoit-init.org +++ b/blendoit/blendoit-init.org @@ -4,7 +4,7 @@ #+EMAIL: blendoit@gmail.com #+STARTUP: showall customtime -# #+SETUPFILE: ~/.emacs.d/templates/documents/general.org +#+SETUPFILE: ~/.emacs.d/templates/documents/general.org # #+INCLUDE: ~/.emacs.d/templates/documents/general.org_title \begin{abstract} @@ -40,8 +40,6 @@ this is the endgame of \textit{literate programming}. Spacemacs-like dialog for default settings. -Bootstrap main configuration from USB drive. - #+NAME: first-setup #+BEGIN_SRC emacs-lisp ;; Prompt enterprise or personal install. Create file in .emacs.d/ on Linux, @@ -180,12 +178,10 @@ mode. #+BEGIN_SRC emacs-lisp (global-set-key (kbd "C-`") 'delete-other-windows) (global-set-key (kbd "C-s") 'save-buffer) - (global-set-key (kbd "C-b") 'ibuffer-sidebar-toggle-sidebar) (global-set-key (kbd "C-r") 'counsel-recentf) -; (global-set-key (kbd "C-n") 'make-frame) ; 7aram! #+END_SRC -*** Graphical file open +*** ~find-file~ Open file with ~C-o~. @@ -515,6 +511,22 @@ Get inspiration from ~ibuffer-sidebar~ and create a better sidebar. ; (add-hook 'after-init-hook 'global-company-mode) #+END_SRC +** ~powerline~ + +#+NAME: powerline +#+BEGIN_SRC emacs-lisp +(use-package powerline) +(powerline-default-theme) +#+END_SRC + +** ~yasnippet~ + +#+NAME: yasnippet +#+BEGIN_SRC emacs-lisp +(use-package yasnippet) +(yas-global-mode 1) +#+END_SRC + ** ~flycheck~ #+NAME: flycheck @@ -525,7 +537,7 @@ Get inspiration from ~ibuffer-sidebar~ and create a better sidebar. ** TODO ~flyspell~ -#+NAME: flycheck +#+NAME: flyspell #+BEGIN_SRC emacs-lisp #+END_SRC @@ -670,10 +682,10 @@ than =1920x1080=. We set the dimensions of the inital and default frames. #+BEGIN_SRC emacs-lisp - (add-to-list 'default-frame-alist '(width . 80)) + (add-to-list 'default-frame-alist '(width . 100)) (add-to-list 'default-frame-alist '(height . 32)) - (add-to-list 'initial-frame-alist '(width . 80)) + (add-to-list 'initial-frame-alist '(width . 100)) (add-to-list 'initial-frame-alist '(height . 32)) #+END_SRC -- cgit v1.2.3