diff options
| -rw-r--r-- | .emacs.d/README.org | 16 | ||||
| -rw-r--r-- | .emacs.d/init.org | 2 | ||||
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | README.org | 6 |
4 files changed, 17 insertions, 11 deletions
diff --git a/.emacs.d/README.org b/.emacs.d/README.org index 517908a..3cb3ccb 100644 --- a/.emacs.d/README.org +++ b/.emacs.d/README.org @@ -28,16 +28,18 @@ the install script. Then make sure to install the following: - =spell= for spell checking. - A LaTeX to PDF converter for exporting org files to PDF. In openSUSE this is fixed by installing the =texlive-pdftex= package. -- =mu= and =mu4e= for email. This should be installed from my [[https://build.opensuse.org/package/show/home:mssola/mu][OBS]] project. +- =mu= and =mu4e= for email. In openSUSE it can be installed from + [[https://build.opensuse.org/package/show/server:mail/maildir-utils][obs://server:mail/maildir-utils]]. -Last but not least, to get a proper Go environment you need to install the -following: +** Go + +In order to get a proper Go environment, you need to perform the following commands: #+BEGIN_SRC sh -go get -u golang.org/x/tools/cmd/goimports -go get -u github.com/rogpeppe/godef -go get -u github.com/dougm/goflymake -go get -u github.com/nsf/gocode +$ go get -u golang.org/x/tools/cmd/goimports +$ go get -u github.com/dougm/goflymake +$ go get -u github.com/rogpeppe/godef +$ go get -u github.com/nsf/gocode #+END_SRC * Developing diff --git a/.emacs.d/init.org b/.emacs.d/init.org index e88368e..c2c9197 100644 --- a/.emacs.d/init.org +++ b/.emacs.d/init.org @@ -51,7 +51,7 @@ on each change, the following function is provided: (when (or (equal (buffer-file-name) (expand-file-name (concat user-emacs-directory "init.org"))) - (string-suffix-p "dotfiles/emacs/init.org" (buffer-file-name))) + (string-suffix-p "dotfiles/.emacs.d/init.org" (buffer-file-name))) ;; Avoid running hooks when tangling (let ((prog-mode-hook nil)) @@ -1,2 +1,4 @@ .vim/bundle/* -bin/*
\ No newline at end of file +bin/* +.fonts/.uuid +.fonts/fonts/.uuid
\ No newline at end of file @@ -8,11 +8,13 @@ Download everything by performing the following command (notice the =--recursive $ git clone --recursive https://github.com/mssola/dotfiles.git #+END_SRC -To install everything just run the =install.sh= script. Use this at your own risk ;) +To install everything just run the =install.sh= script (check also the +[[./.emacs.d/README.org][.emacs.d/README.org]] file to see the external dependencies for GNU Emacs). Use +this at your own risk ;) ** GNU Emacs -See [[./.emacs.d/README.org][.emacs.d/README.org]] +See [[./.emacs.d/README.org][.emacs.d/README.org]]. ** Runtime dependencies |
