Minor tweaks and fixes

This commit is contained in:
2016-03-01 08:51:55 +00:00
parent 652bc3dab1
commit 00f2023cb7
8 changed files with 9 additions and 11 deletions

View File

@@ -7,11 +7,10 @@
;;; Code:
(require 'siren-programming)
(siren-require-packages '(coffee-mode))
(eval-after-load 'coffee-mode
'(progn
(siren-require-packages '(coffee-mode))
(setq coffee-tab-width 2)
;; remove the "Generated by CoffeeScript" header

View File

@@ -13,7 +13,7 @@
(defun siren-feature-mode-defaults ()
(siren-prog-mode-defaults)
(setq tab-width 2)
(setq highlight-indentation-offset 2)
(highlight-indentation-set-offset 2)
(highlight-indentation-mode)
(highlight-indentation-current-column-mode))

View File

@@ -7,6 +7,7 @@
;;; Code:
(require 'siren-programming)
(siren-require-packages '(go-mode company-go go-eldoc go-projectile gotest))
(setenv "GOPATH" (expand-file-name "~/.go"))
@@ -17,9 +18,6 @@
(eval-after-load 'go-mode
'(progn
(siren-require-packages
'(go-mode company-go go-eldoc go-projectile gotest))
(require 'go-projectile)
(require 'company-go)

View File

@@ -15,7 +15,7 @@
(defun siren-haml-mode-defaults ()
(siren-prog-mode-defaults)
(setq tab-width 2)
(setq highlight-indentation-offset 2)
(highlight-indentation-set-offset 2)
(highlight-indentation-mode)
(highlight-indentation-current-column-mode))

View File

@@ -1,8 +1,8 @@
;;; siren-js.el --- jimeh's Emacs Siren: js-mode configuration.
;;; siren-js.el --- jimeh's Emacs Siren: js2-mode configuration.
;;; Commentary:
;; Basic configuration for js-mode.
;; Basic configuration for js2-mode.
;;; Code:

View File

@@ -14,7 +14,7 @@
(siren-prog-mode-defaults)
(subword-mode)
(setq tab-width 4)
(setq highlight-indentation-offset 4)
(highlight-indentation-set-offset 4)
(highlight-indentation-mode)
(highlight-indentation-current-column-mode))

View File

@@ -13,6 +13,7 @@
(setq neo-show-hidden-files t)
(setq neo-smart-open nil)
(setq neo-dont-be-alone t)
(setq neo-theme (quote nerd))
(setq neo-window-width 54)

View File

@@ -34,9 +34,9 @@
;; Project management
(require 'siren-projectile)
;; (require 'siren-neotree)
(require 'siren-project-explorer)
(require 'siren-ecb) ;; evil and slows down all of emacs
;; (require 'siren-neotree)
;; Workspace management
(require 'siren-escreen)