Commit 0fc0533d38c6

Vincent Demeester <vincent@sbr.pm>
2020-07-05 10:01:40
tools/emacs: clean some files
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent ac98aa7
Changed files (3)
tools/emacs/config/00-clean.el
@@ -1,7 +1,3 @@
-;;; 00-clean.el --- -*- lexical-binding: t -*-
-;;; Commentary:
-;;; No littering and recentf configuration
-;;; Code:
 (use-package recentf
   :config
   (setq recentf-max-saved-items 200
@@ -58,4 +54,3 @@
    `((".*" . ,(no-littering-expand-var-file-name "backup/")))
    auto-save-file-name-transforms
    `((".*" ,(no-littering-expand-var-file-name "auto-save/") t))))
-;;; 00-clean.el ends here
tools/emacs/config/00-environments.el
@@ -1,22 +0,0 @@
-;;; 00-environments.el --- -*- lexical-binding: t -*-
-;;; Commentary:
-;;; Setup environment variables for Emacs
-;;; Code:
-
-;; We shouldn't need that, so it's disabled for now
-(use-package exec-path-from-shell
-  :disabled
-  :if (display-graphic-p)
-  :unless (or (eq system-type 'windows-nt) (eq system-type 'gnu/linux))
-  :config
-  (setq exec-path-from-shell-variables
-        '("PATH"               ; Full path
-          "INFOPATH"           ; Info directories
-          "GOPATH"             ; Golang path
-          ))
-  (exec-path-from-shell-initialize))
-
-(setenv "PAGER" "cat")
-(setenv "TERM" "xterm-256color")
-
-;;; 00-environments.el ends here
tools/emacs/config/01-server.el
@@ -1,12 +0,0 @@
-;;; 01-server.el --- -*- lexical-binding: t -*-
-;;; Commentary:
-;;; Enable server-mode
-;;; Code:
-
-;; UseServer
-(use-package server
-  :disabled
-  :config (or (server-running-p) (server-mode)))
-;; -UseServer
-
-;;; 01-server.el ends here