added neotree and removed folders
This commit is contained in:
20
init.el
20
init.el
@@ -23,10 +23,10 @@ There are two things you can do about this warning:
|
||||
;; If there is more than one, they won't work right.
|
||||
'(custom-safe-themes
|
||||
(quote
|
||||
("a24c5b3c12d147da6cef80938dca1223b7c7f70f2f382b26308eba014dc4833a" "a7051d761a713aaf5b893c90eaba27463c791cd75d7257d3a8e66b0c8c346e77" default)))
|
||||
("44961a9303c92926740fc4121829c32abca38ba3a91897a4eab2aa3b7634bed4" "9be1d34d961a40d94ef94d0d08a364c3d27201f3c98c9d38e36f10588469ea57" "50b64810ed1c36dfb72d74a61ae08e5869edc554102f20e078b21f84209c08d1" "2540689fd0bc5d74c4682764ff6c94057ba8061a98be5dd21116bf7bf301acfb" "36ca8f60565af20ef4f30783aa16a26d96c02df7b4e54e9900a5138fb33808da" "cdb4ffdecc682978da78700a461cdc77456c3a6df1c1803ae2dd55c59fa703e3" "d6c5b8dc6049f2e9dabdfcafa9ef2079352640e80dffe3e6cc07c0f89cbf9748" "a24c5b3c12d147da6cef80938dca1223b7c7f70f2f382b26308eba014dc4833a" "a7051d761a713aaf5b893c90eaba27463c791cd75d7257d3a8e66b0c8c346e77" default)))
|
||||
'(package-selected-packages
|
||||
(quote
|
||||
(markdown-mode+ vue-mode dumb-jump magit company flycheck-rust flycheck json-mode flymake-json tss tide material-theme zenburn-theme ac-js2 auto-complete projectile helm js2-mode cargo rust-mode))))
|
||||
(neotree base16-theme afternoon-theme ample-theme nord-theme company-racer racer markdown-mode+ vue-mode dumb-jump magit company flycheck-rust flycheck json-mode flymake-json tss tide material-theme zenburn-theme ac-js2 auto-complete projectile helm js2-mode cargo rust-mode))))
|
||||
(custom-set-faces
|
||||
;; custom-set-faces was added by Custom.
|
||||
;; If you edit it by hand, you could mess it up, so be careful.
|
||||
@@ -40,6 +40,11 @@ There are two things you can do about this warning:
|
||||
(add-hook 'rust-mode-hook 'cargo-minor-mode)
|
||||
(with-eval-after-load 'rust-mode
|
||||
(add-hook 'flycheck-mode-hook #'flycheck-rust-setup))
|
||||
(add-hook 'rust-mode-hook #'racer-mode)
|
||||
(add-hook 'racer-mode-hook #'eldoc-mode)
|
||||
(add-hook 'racer-mode-hook #'company-mode)
|
||||
(define-key rust-mode-map (kbd "TAB") #'company-indent-or-complete-common)
|
||||
(setq company-tooltip-align-annotations t)
|
||||
|
||||
(add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
|
||||
(require 'helm-config)
|
||||
@@ -50,7 +55,7 @@ There are two things you can do about this warning:
|
||||
(ac-config-default)
|
||||
(add-hook 'js2-mode-hook 'ac-js2-mode)
|
||||
(setq ac-js2-evaluate-calls t)
|
||||
(load-theme 'zenburn t)
|
||||
|
||||
(require 'typescript-mode)
|
||||
(add-to-list 'auto-mode-alist '("\\.ts\\'" . typescript-mode))
|
||||
|
||||
@@ -78,3 +83,12 @@ There are two things you can do about this warning:
|
||||
(global-display-line-numbers-mode)
|
||||
(require 'vue-mode)
|
||||
;; (add-to-list 'auto-mode-alist '("\\.vue\\'" . vue-mode))
|
||||
|
||||
(load-theme 'nord t)
|
||||
;;(set-frame-parameter (selected-frame) 'alpha '(<active> . <inactive>))
|
||||
;;(set-frame-parameter (selected-frame) 'alpha <both>)
|
||||
;;(set-frame-parameter (selected-frame) 'alpha '(50 50))
|
||||
;;(add-to-list 'default-frame-alist '(alpha . (50 50)))
|
||||
(require 'neotree)
|
||||
(global-set-key (kbd "C-c n") 'neotree-toggle)
|
||||
(setq neo-theme (if (display-graphic-p) 'icons 'arrow))
|
||||
|
||||
Reference in New Issue
Block a user