forked from colonelpanic/dotfiles
random tweaks
This commit is contained in:
parent
b1d52aac93
commit
cb5d7f8524
@ -2034,7 +2034,8 @@ window is active in the perspective."
|
|||||||
;; Java
|
;; Java
|
||||||
;; =============================================================================
|
;; =============================================================================
|
||||||
|
|
||||||
(add-hook 'java-mode-hook (lambda ()
|
(add-hook 'java-mode-hook
|
||||||
|
(lambda ()
|
||||||
(setq c-basic-offset 4
|
(setq c-basic-offset 4
|
||||||
tab-width 4
|
tab-width 4
|
||||||
indent-tabs-mode t)))
|
indent-tabs-mode t)))
|
||||||
@ -2066,7 +2067,7 @@ window is active in the perspective."
|
|||||||
:bind
|
:bind
|
||||||
;; (("C-c b" . web-beautify-js)) TODO: to make this mode specific
|
;; (("C-c b" . web-beautify-js)) TODO: to make this mode specific
|
||||||
;; and change binding
|
;; and change binding
|
||||||
:init
|
:preface
|
||||||
(progn
|
(progn
|
||||||
(defvar-setq imalison:identifier-count 0)
|
(defvar-setq imalison:identifier-count 0)
|
||||||
(defun imalison:console-log-unique ()
|
(defun imalison:console-log-unique ()
|
||||||
@ -2092,8 +2093,9 @@ window is active in the perspective."
|
|||||||
(setq imenu-create-index-function
|
(setq imenu-create-index-function
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(imalison:flatten-imenu-index
|
(imalison:flatten-imenu-index
|
||||||
(js2-mode-create-imenu-index)))))
|
(js2-mode-create-imenu-index))))))
|
||||||
|
:init
|
||||||
|
(progn
|
||||||
(add-hook 'js2-mode-hook 'imalison:js2-mode-hook)
|
(add-hook 'js2-mode-hook 'imalison:js2-mode-hook)
|
||||||
(add-hook 'js2-mode-hook 'js2-imenu-extras-mode)))
|
(add-hook 'js2-mode-hook 'js2-imenu-extras-mode)))
|
||||||
|
|
||||||
@ -2498,7 +2500,7 @@ items follow a style that is consistent with other prog-modes."
|
|||||||
(defun imalison:format-linum (line-text)
|
(defun imalison:format-linum (line-text)
|
||||||
(propertize (format imalison:linum-format line-text) 'face 'linum))
|
(propertize (format imalison:linum-format line-text) 'face 'linum))
|
||||||
|
|
||||||
(defun imalison:remove-fringe-and-hl-line-mode (&rest stuff)
|
(defun imalison:remove-fringe-and-hl-line-mode (&rest _stuff)
|
||||||
(interactive)
|
(interactive)
|
||||||
(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
|
(if (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
|
||||||
(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))
|
(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))
|
||||||
@ -2509,7 +2511,7 @@ items follow a style that is consistent with other prog-modes."
|
|||||||
(setq left-margin-width 0)
|
(setq left-margin-width 0)
|
||||||
(defvar-setq hl-line-mode nil))
|
(defvar-setq hl-line-mode nil))
|
||||||
|
|
||||||
(defun imalison:after-load-theme (&rest args)
|
(defun imalison:after-load-theme (&rest _args)
|
||||||
(when (fboundp 'powerline-reset)
|
(when (fboundp 'powerline-reset)
|
||||||
(powerline-reset))
|
(powerline-reset))
|
||||||
(set-face-background 'fringe (face-background 'default))
|
(set-face-background 'fringe (face-background 'default))
|
||||||
|
Loading…
Reference in New Issue
Block a user