diff options
author | Amin Bandali <bandali@gnu.org> | 2018-12-23 00:15:30 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2018-12-23 00:15:30 -0500 |
commit | 9678e6da76fac31f79a639b987be22322474c416 (patch) | |
tree | 801d68b488eeda256228cb26bf107f23fbce50e6 | |
parent | a219024e13f754887cbbe1481823765bc2802263 (diff) | |
download | configs-9678e6da76fac31f79a639b987be22322474c416.tar.gz configs-9678e6da76fac31f79a639b987be22322474c416.tar.xz configs-9678e6da76fac31f79a639b987be22322474c416.zip |
[emacs] remove pdf-tools
Diffstat (limited to '')
-rw-r--r-- | .gitmodules | 13 | ||||
-rw-r--r-- | init.org | 20 | ||||
m--------- | lib/pdf-tools | 0 | ||||
m--------- | lib/tablist | 0 |
4 files changed, 1 insertions, 32 deletions
diff --git a/.gitmodules b/.gitmodules index f318c21..2e96608 100644 --- a/.gitmodules +++ b/.gitmodules @@ -215,16 +215,6 @@ [submodule "page-break-lines"] path = lib/page-break-lines url = git@github.com:purcell/page-break-lines.git -[submodule "pdf-tools"] - path = lib/pdf-tools - url = git@github.com:politza/pdf-tools.git - build-step = make - build-step = borg-byte-compile - build-step = borg-update-autoloads - # pdf-tools-install creates `lisp/epdfinfo', which makes git think - # that the submodule is dirty. so, let's ignore the untracked - # files of pdf-tools' submodule - ignore = untracked [submodule "pkg-info"] path = lib/pkg-info url = git@github.com:lunaryorn/pkg-info.el.git @@ -255,9 +245,6 @@ [submodule "smex"] # used by counsel-M-x path = lib/smex url = git@github.com:nonsequitur/smex.git -[submodule "tablist"] - path = lib/tablist - url = git@github.com:politza/tablist.git [submodule "treepy"] path = lib/treepy url = git@github.com:volrath/treepy.el.git @@ -1224,6 +1224,7 @@ TODO: break this giant source block down into individual org sections. (advice-add #'ispell-parse-output :filter-args #'endless/replace-quote)) #+end_src + * Programming modes :PROPERTIES: :CUSTOM_ID: programming-modes @@ -1784,25 +1785,6 @@ Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]]. (set-face-foreground 'highlight-indent-guides-top-character-face "grey40")) ; grey13 is nice too #+end_src -** pdf-tools - -#+begin_src emacs-lisp -(use-package pdf-tools - :defer t - :magic ("%PDF" . pdf-view-mode) - :config - (setq pdf-view-resize-factor 1.05) - (pdf-tools-install) - :bind - (:map pdf-view-mode-map - ("C-s" . isearch-forward) - ("C-r" . isearch-backward) - ("j" . pdf-view-next-line-or-next-page) - ("k" . pdf-view-previous-line-or-previous-page) - ("h" . image-backward-hscroll) - ("l" . image-forward-hscroll))) -#+end_src - ** typo.el #+begin_src emacs-lisp diff --git a/lib/pdf-tools b/lib/pdf-tools deleted file mode 160000 -Subproject a4cd69ea1d50b8e74ea515eec95948ad87c6c73 diff --git a/lib/tablist b/lib/tablist deleted file mode 160000 -Subproject c834a84efb6efa32497efe1e73160fade741b83 |