Add .spacemacs
This commit is contained in:
parent
b52ede2d51
commit
5bc6187a21
1 changed files with 165 additions and 0 deletions
165
.spacemacs
Normal file
165
.spacemacs
Normal file
|
|
@ -0,0 +1,165 @@
|
|||
;; -*- mode: emacs-lisp -*-
|
||||
;; This file is loaded by Spacemacs at startup.
|
||||
;; It must be stored in your home directory.
|
||||
|
||||
;; Configuration Layers
|
||||
;; --------------------
|
||||
|
||||
(setq-default
|
||||
;; List of additional paths where to look for configuration layers.
|
||||
;; Paths must have a trailing slash (ie. `~/.mycontribs/')
|
||||
dotspacemacs-configuration-layer-path '()
|
||||
;; List of configuration layers to load.
|
||||
dotspacemacs-configuration-layers '(puppet git themes-megapack)
|
||||
;; A list of packages and/or extensions that will not be install and loaded.
|
||||
dotspacemacs-excluded-packages '()
|
||||
)
|
||||
|
||||
;; Settings
|
||||
;; --------
|
||||
|
||||
(setq-default
|
||||
;; Default theme applied at startup
|
||||
;dotspacemacs-default-theme 'solarized-light
|
||||
dotspacemacs-default-theme 'subatomic256
|
||||
;; The leader key
|
||||
dotspacemacs-leader-key "SPC"
|
||||
;; Major mode leader key is a shortcut key which is the equivalent of
|
||||
;; pressing `<leader> m`
|
||||
dotspacemacs-major-mode-leader-key ","
|
||||
;; The command key used for Evil commands (ex-commands) and
|
||||
;; Emacs commands (M-x).
|
||||
;; By default the command key is `:' so ex-commands are executed like in Vim
|
||||
;; with `:' and Emacs commands are executed with `<leader> :'.
|
||||
dotspacemacs-command-key ":"
|
||||
;; Guide-key delay in seconds. The Guide-key is the popup buffer listing
|
||||
;; the commands bound to the current keystrokes.
|
||||
dotspacemacs-guide-key-delay 0.4
|
||||
;; If non nil the frame is fullscreen when Emacs starts up (Emacs 24.4+ only).
|
||||
dotspacemacs-fullscreen-at-startup nil
|
||||
;; If non nil the frame is maximized when Emacs starts up (Emacs 24.4+ only).
|
||||
;; Takes effect only if `dotspacemacs-fullscreen-at-startup' is nil.
|
||||
dotspacemacs-maximized-at-startup nil
|
||||
;; If non nil smooth scrolling (native-scrolling) is enabled. Smooth scrolling
|
||||
;; overrides the default behavior of Emacs which recenters the point when
|
||||
;; it reaches the top or bottom of the screen
|
||||
dotspacemacs-smooth-scrolling t
|
||||
;; If non nil pressing 'jk' in insert state, ido or helm will activate the
|
||||
;; evil leader.
|
||||
dotspacemacs-feature-toggle-leader-on-jk nil
|
||||
;; If non-nil smartparens-strict-mode will be enabled in programming modes.
|
||||
dotspacemacs-smartparens-strict-mode nil
|
||||
;; If non nil advises quit functions to keep server open when quitting.
|
||||
dotspacemacs-persistent-server nil
|
||||
;; The default package repository used if no explicit repository has been
|
||||
;; specified with an installed package.
|
||||
;; Not used for now.
|
||||
dotspacemacs-default-package-repository nil
|
||||
;; Paradox github integration
|
||||
paradox-github-token "00fe70131a6be7e7bda0cb642d7fdac2a87fd7bd"
|
||||
)
|
||||
|
||||
;; undo-tree history across restarts
|
||||
(setq undo-tree-history-directory-alist
|
||||
`((".*" . ,(concat spacemacs-cache-directory "undo-tree-history"))))
|
||||
(setq undo-tree-auto-save-history t)
|
||||
|
||||
;; Bind to the correct mac keys
|
||||
(setq mac-option-modifier 'meta)
|
||||
(setq mac-command-modifier 'super)
|
||||
(setq mac-pass-control-to-system nil)
|
||||
(global-set-key (kbd "s-q") 'save-buffers-kill-emacs)
|
||||
(global-set-key (kbd "s-v") 'yank)
|
||||
(global-set-key (kbd "s-c") 'copy-region-as-kill)
|
||||
|
||||
;; Configure colors for the powerline
|
||||
(setq ns-use-srgb-colorspace t)
|
||||
|
||||
;; Set transparency of emacs
|
||||
(defun transparency (value)
|
||||
"Sets the transparency of the frame window. 0=transparent/100=opaque"
|
||||
(interactive "nTransparency Value 0 - 100 opaque:")
|
||||
(set-frame-parameter (selected-frame) 'alpha value))
|
||||
|
||||
;; Initialization Hooks
|
||||
;; --------------------
|
||||
|
||||
(defun dotspacemacs/init ()
|
||||
"User initialization for Spacemacs. This function is called at the very
|
||||
startup."
|
||||
)
|
||||
|
||||
(defun dotspacemacs/config ()
|
||||
"This is were you can ultimately override default Spacemacs configuration.
|
||||
This function is called at the very end of Spacemacs initialization."
|
||||
(spacemacs/set-font "source code pro" 12)
|
||||
;; Make C-g work like <esc>
|
||||
;(define-key evil-normal-state-map "\C-g" 'evil-normal-state)
|
||||
(define-key evil-visual-state-map "\C-g" 'evil-normal-state)
|
||||
(define-key evil-insert-state-map "\C-g" 'evil-normal-state)
|
||||
(define-key evil-visual-state-map "\C-c" 'evil-normal-state)
|
||||
(define-key evil-insert-state-map "\C-c" 'evil-normal-state)
|
||||
(setq powerline-default-separator nil)
|
||||
)
|
||||
|
||||
;; Custom variables
|
||||
;; ----------------
|
||||
|
||||
;; Do not write anything in this section. This is where Emacs will
|
||||
;; auto-generate custom variable definitions.
|
||||
|
||||
|
||||
(custom-set-variables
|
||||
;; custom-set-variables was added by Custom.
|
||||
;; If you edit it by hand, you could mess it up, so be careful.
|
||||
;; Your init file should contain only one such instance.
|
||||
;; If there is more than one, they won't work right.
|
||||
'(ac-ispell-requires 4)
|
||||
'(ahs-case-fold-search nil)
|
||||
'(ahs-default-range (quote ahs-range-whole-buffer))
|
||||
'(ahs-idle-interval 0.25)
|
||||
'(ahs-idle-timer 0 t)
|
||||
'(ahs-inhibit-face-list nil)
|
||||
'(compilation-message-face (quote default))
|
||||
'(cua-global-mark-cursor-color "#2aa198")
|
||||
'(cua-normal-cursor-color "#839496")
|
||||
'(cua-overwrite-cursor-color "#b58900")
|
||||
'(cua-read-only-cursor-color "#859900")
|
||||
'(custom-safe-themes
|
||||
(quote
|
||||
("a99e7c91236b2aba4cd374080c73f390c55173c5a1b4ac662eeb3172b60a9814" "ef43b291f7e96826d3d9bae61434a93020d0f529d609bc8be5b331980e8448d7" "64581032564feda2b5f2cf389018b4b9906d98293d84d84142d90d7986032d33" "e16a771a13a202ee6e276d06098bc77f008b73bbac4d526f160faa2d76c1dd0e" "d677ef584c6dfc0697901a44b885cc18e206f05114c8a3b7fde674fce6180879" "8aebf25556399b58091e533e455dd50a6a9cba958cc4ebb0aab175863c25b9a4" "9dae95cdbed1505d45322ef8b5aa90ccb6cb59e0ff26fef0b8f411dfc416c552" default)))
|
||||
'(highlight-changes-colors ("#FD5FF0" "#AE81FF"))
|
||||
'(highlight-symbol-colors
|
||||
(--map
|
||||
(solarized-color-blend it "#002b36" 0.25)
|
||||
(quote
|
||||
("#b58900" "#2aa198" "#dc322f" "#6c71c4" "#859900" "#cb4b16" "#268bd2"))))
|
||||
'(highlight-symbol-foreground-color "#93a1a1")
|
||||
'(highlight-tail-colors
|
||||
(("#49483E" . 0)
|
||||
("#67930F" . 20)
|
||||
("#349B8D" . 30)
|
||||
("#21889B" . 50)
|
||||
("#968B26" . 60)
|
||||
("#A45E0A" . 70)
|
||||
("#A41F99" . 85)
|
||||
("#49483E" . 100)))
|
||||
'(hl-bg-colors
|
||||
(quote
|
||||
("#7B6000" "#8B2C02" "#990A1B" "#93115C" "#3F4D91" "#00629D" "#00736F" "#546E00")))
|
||||
'(hl-fg-colors
|
||||
(quote
|
||||
("#002b36" "#002b36" "#002b36" "#002b36" "#002b36" "#002b36" "#002b36" "#002b36")))
|
||||
'(if (version< emacs-version "24.4"))
|
||||
'(magit-diff-use-overlays nil)
|
||||
'(paradox-automatically-star t)
|
||||
'(ring-bell-function (quote ignore) t)
|
||||
'(smartrep-mode-line-active-bg (solarized-color-blend "#859900" "#073642" 0.2))
|
||||
'(weechat-color-list
|
||||
(unspecified "#272822" "#49483E" "#A20C41" "#F92672" "#67930F" "#A6E22E" "#968B26" "#E6DB74" "#21889B" "#66D9EF" "#A41F99" "#FD5FF0" "#349B8D" "#A1EFE4" "#F8F8F2" "#F8F8F0")))
|
||||
(custom-set-faces
|
||||
;; custom-set-faces was added by Custom.
|
||||
;; If you edit it by hand, you could mess it up, so be careful.
|
||||
;; Your init file should contain only one such instance.
|
||||
;; If there is more than one, they won't work right.
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue