Disable smartparens

This commit is contained in:
2018-11-28 10:40:22 -08:00
parent a96d652829
commit 2032dbc08e

View File

@@ -41,8 +41,8 @@
;; Aesthetics
(colors :variables
colors-colorize-identifiers 'all)
))
colors-colorize-identifiers 'all)))
;; Enable osx layer only on Macs
(cond
@@ -481,12 +481,19 @@ you should place your code here."
(setq-default default-tab-width 2)
(setq-default indent-tabs-mode nil)
(eval-after-load 'smartparens
'(progn
(sp-pair "(" nil :actions :rem)
(sp-pair "[" nil :actions :rem)
(sp-pair "'" nil :actions :rem)
(sp-pair "\"" nil :actions :rem)))
(setq-default js-indent-level 2)
(setq-default c-basic-offset 2)
(setq-default sgml-basic-offset 2)
(setq-default spacemacs-show-trailing-whitespace nil)
(setq-default python-shell-interpreter "python3")
)
(setq-default python-shell-interpreter "python3"))
(setq custom-file "~/.dotfiles/emacs-local-custom.el")
(load custom-file)