Tweaks
-- Add gitignore-global file for junk like .DS_Store -- Add shell-script syntax highlighting to spacemacs config -- Turn off smooth-scrolling in terminal-mode buffers -- Disable missing "socerer" vim theme.
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,2 +1 @@
|
|||||||
.DS_Store
|
lein/repl-history
|
||||||
lein/repl-history
|
|
||||||
|
|||||||
@@ -8,3 +8,5 @@
|
|||||||
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
|
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
|
||||||
[push]
|
[push]
|
||||||
default = simple
|
default = simple
|
||||||
|
[core]
|
||||||
|
excludesfile = ~/.dotfiles/gitignore-global
|
||||||
|
|||||||
2
gitignore-global
Normal file
2
gitignore-global
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
.DS_Store
|
||||||
|
*.sw?
|
||||||
@@ -20,9 +20,8 @@
|
|||||||
git
|
git
|
||||||
;; markdown
|
;; markdown
|
||||||
org
|
org
|
||||||
(shell :variables
|
shell
|
||||||
shell-default-height 30
|
shell-scripts
|
||||||
shell-default-position 'bottom)
|
|
||||||
;; syntax-checking
|
;; syntax-checking
|
||||||
version-control
|
version-control
|
||||||
))
|
))
|
||||||
@@ -178,6 +177,10 @@ layers configuration."
|
|||||||
(with-syntax-table table
|
(with-syntax-table table
|
||||||
ad-do-it)))
|
ad-do-it)))
|
||||||
(evil-set-initial-state 'term-mode 'emacs)
|
(evil-set-initial-state 'term-mode 'emacs)
|
||||||
|
(add-hook 'term-mode-hook
|
||||||
|
(lambda ()
|
||||||
|
(make-local-variable 'scroll-margin)
|
||||||
|
(setq scroll-margin 0)))
|
||||||
)
|
)
|
||||||
|
|
||||||
;; Do not write anything past this comment. This is where Emacs will
|
;; Do not write anything past this comment. This is where Emacs will
|
||||||
|
|||||||
Reference in New Issue
Block a user