All the icons installation
This commit is contained in:
parent
9f52b04b89
commit
ad2592fb06
2 changed files with 8 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,3 +3,4 @@ elpa
|
||||||
config.el
|
config.el
|
||||||
smex-items
|
smex-items
|
||||||
recentf
|
recentf
|
||||||
|
transient
|
||||||
|
|
|
@ -27,8 +27,9 @@
|
||||||
** Dependencies
|
** Dependencies
|
||||||
The only no emacs related dependence in this configuration is the
|
The only no emacs related dependence in this configuration is the
|
||||||
IBM Plex Mono font. Install it from your distribution packages.
|
IBM Plex Mono font. Install it from your distribution packages.
|
||||||
* melpa crap
|
* melpa crap, and basic packages installation
|
||||||
melpa, where you get the packages. This also installs use-package
|
melpa, where you get the packages. This also installs use-package,
|
||||||
|
and other packages I use.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(require 'package)
|
(require 'package)
|
||||||
(let* ((no-ssl (and (memq system-type '(windows-nt ms-dos))
|
(let* ((no-ssl (and (memq system-type '(windows-nt ms-dos))
|
||||||
|
@ -55,6 +56,10 @@
|
||||||
:ensure t)
|
:ensure t)
|
||||||
(use-package magit
|
(use-package magit
|
||||||
:ensure t)
|
:ensure t)
|
||||||
|
(use-package all-the-fonts
|
||||||
|
:ensure t
|
||||||
|
:init
|
||||||
|
(all-the-icons-install-fonts))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
* Autoindentation
|
* Autoindentation
|
||||||
C-c n for indent-buffer. I don't use the rest.
|
C-c n for indent-buffer. I don't use the rest.
|
||||||
|
|
Loading…
Add table
Reference in a new issue