summaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/site-lisp
diff options
context:
space:
mode:
authorGravatar Tom Willemse2016-06-10 14:52:22 +0200
committerGravatar Tom Willemse2016-06-10 14:52:22 +0200
commitd860ba44db1e2bfae8a5e83e0c42df481954156d (patch)
treea30ce0ce368a9107038dadf8ac85e5f7a668f2bb /emacs/.emacs.d/site-lisp
parent27c2242c523ed9f3cb3f4dca5dc4a6f3faf1f539 (diff)
downloaddotfiles-d860ba44db1e2bfae8a5e83e0c42df481954156d.tar.gz
dotfiles-d860ba44db1e2bfae8a5e83e0c42df481954156d.zip
Remove helm config
Diffstat (limited to 'emacs/.emacs.d/site-lisp')
-rw-r--r--emacs/.emacs.d/site-lisp/oni-helm.el36
1 files changed, 0 insertions, 36 deletions
diff --git a/emacs/.emacs.d/site-lisp/oni-helm.el b/emacs/.emacs.d/site-lisp/oni-helm.el
deleted file mode 100644
index cae97d3..0000000
--- a/emacs/.emacs.d/site-lisp/oni-helm.el
+++ /dev/null
@@ -1,36 +0,0 @@
-;;; oni-helm.el --- Extra commands and functions for helm -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2016 Tom Willemse
-
-;; Author: Tom Willemse <tom@ryuslash.org>
-;; Keywords:
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Here are some extra commands and functions for helm.
-
-;;; Code:
-
-(require 'helm-lib)
-
-;;;###autoload
-(defun oni:stop-truncating-helm-lines ()
- (with-current-buffer helm-buffer
- (setq truncate-lines nil
- truncate-partial-width-windows nil)))
-
-(provide 'oni-helm)
-;;; oni-helm.el ends here