Skip to content

Commit

Permalink
Add beacon mode. Update readme, add safe variable var.
Browse files Browse the repository at this point in the history
Add flake8 location for siphon
  • Loading branch information
Huseyin Yilmaz authored and Huseyin Yilmaz committed Nov 16, 2016
1 parent eef2670 commit 13af5ca
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 6 deletions.
8 changes: 6 additions & 2 deletions README.rst
Expand Up @@ -15,10 +15,14 @@ Install python requirements from requirements.pip file.

optional js requirements
------------------------
Install jshint to get javascript style warnings.
Install jshint and tern to get javascript style warnings.
Also install jsonlint to get json file style warning.
::

$ sudo npm install jshint -g
$ npm install -g jshint
$ npm install -g tern
$ npm install -g jsonlint


optional erlang requirements
----------------------------
Expand Down
3 changes: 2 additions & 1 deletion init.el
Expand Up @@ -33,7 +33,8 @@
("84d2f9eeb3f82d619ca4bfffe5f157282f4779732f48a5ac1484d94d5ff5b279" "a802c77b818597cc90e10d56e5b66945c57776f036482a033866f5f506257bca" "b04425cc726711a6c91e8ebc20cf5a3927160681941e06bc7900a5a5bfe1a77f" "79a3f477ac0cb4a106f78b6109614e991564a5c2467c36e6e854d4bc1102e178" "26614652a4b3515b4bbbb9828d71e206cc249b67c9142c06239ed3418eff95e2" "a27c00821ccfd5a78b01e4f35dc056706dd9ede09a8b90c6955ae6a390eb1c1e" default)))
'(package-selected-packages
(quote
(magit which-key company-restclient restclient move-text ace-jump-mode helm-ag helm-swoop helm-projectile helm-flycheck helm aggressive-indent highlight-indentation whitespace-cleanup-mode hl-sexp elisp-slime-nav smart-mode-line-powerline-theme smart-mode-line powerline gruvbox-theme atom-dark-theme spacegray-theme base16-theme monokai-theme solarized-theme zenburn-theme dracula-theme jdee company-tern tern coffee-mode scss-mode sass-mode yaml-mode json-mode csv-mode intero ensime yasnippet web-mode virtualenvwrapper slime rainbow-delimiters projectile multiple-cursors git-gutter-fringe flycheck-color-mode-line exec-path-from-shell company-anaconda ag))))
(magit which-key company-restclient restclient move-text ace-jump-mode helm-ag helm-swoop helm-projectile helm-flycheck helm aggressive-indent highlight-indentation whitespace-cleanup-mode hl-sexp elisp-slime-nav smart-mode-line-powerline-theme smart-mode-line powerline gruvbox-theme atom-dark-theme spacegray-theme base16-theme monokai-theme solarized-theme zenburn-theme dracula-theme jdee company-tern tern coffee-mode scss-mode sass-mode yaml-mode json-mode csv-mode intero ensime yasnippet web-mode virtualenvwrapper slime rainbow-delimiters projectile multiple-cursors git-gutter-fringe flycheck-color-mode-line exec-path-from-shell company-anaconda ag)))
'(safe-local-variable-values (quote ((radius-code . t)))))

(require 'user-init)

Expand Down
4 changes: 4 additions & 0 deletions lisp/user-init-config.el
Expand Up @@ -58,7 +58,11 @@
powerline
smart-mode-line
smart-mode-line-powerline-theme
;; Ansible
ansible
ansible-doc
;; Others
beacon
elisp-slime-nav
hl-sexp
whitespace-cleanup-mode
Expand Down
5 changes: 5 additions & 0 deletions lisp/user-init-default-modes.el
Expand Up @@ -28,6 +28,11 @@
(add-hook 'after-init-hook (lambda ()
(global-set-key (kbd "C-x g") 'magit-status)))

;;;;;;;;;;;;;;;;;
;; beacon mode ;;
;;;;;;;;;;;;;;;;;
(add-hook 'after-init-hook #'beacon-mode)


(provide 'user-init-default-modes)

Expand Down
2 changes: 1 addition & 1 deletion lisp/user-init-default.el
Expand Up @@ -75,7 +75,7 @@
;;;;;;;;;;;;;;;;;;;;;
;; set keybindings ;;
;;;;;;;;;;;;;;;;;;;;;
(global-set-key (kbd "C-x e") 'eval-print-last-sexp)
;; (global-set-key (kbd "C-x e") 'eval-print-last-sexp)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; enable highlock mode for all parents ;;
Expand Down
3 changes: 1 addition & 2 deletions lisp/user-init-flycheck.el
Expand Up @@ -13,8 +13,7 @@
'(add-hook 'flycheck-mode-hook 'flycheck-color-mode-line-mode))

(setq-default flycheck-flake8-maximum-complexity 10)
(setq flycheck-python-flake8-executable "/Users/huseyin/.virtualenvs/flake8/bin/flake8")

(setq flycheck-python-flake8-executable "/Users/huseyinyilmaz/.virtualenvs/flake8/bin/flake8")

;; Change mode faces
(custom-set-variables
Expand Down
3 changes: 3 additions & 0 deletions lisp/user-init-org.el
Expand Up @@ -8,6 +8,9 @@
;; setup remember.el
(setq org-directory "~/org")
(setq org-default-notes-file (concat org-directory "/notes.org"))
;; fontify code in code blocks
(setq org-src-fontify-natively t)

(define-key global-map "\C-cc" 'org-capture)

(message "config org-mode")
Expand Down

0 comments on commit 13af5ca

Please sign in to comment.