-- 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:
2015-08-26 14:57:44 -07:00
parent a19aaaffc3
commit aeb83497c9
5 changed files with 11 additions and 6 deletions

1
.gitignore vendored
View File

@@ -1,2 +1 @@
.DS_Store
lein/repl-history lein/repl-history

View File

@@ -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
View File

@@ -0,0 +1,2 @@
.DS_Store
*.sw?

View File

@@ -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

1
vimrc
View File

@@ -3,7 +3,6 @@ filetype off
filetype plugin indent on filetype plugin indent on
set background=dark set background=dark
colorscheme sorcerer
set number set number