Update various dotfiles
This commit is contained in:
parent
96d505d517
commit
673460fde0
8 changed files with 313 additions and 100 deletions
|
|
@ -110,3 +110,4 @@ chunkc tiling::rule --owner \"Lightroom\" --state float
|
||||||
chunkc tiling::rule --owner \"Steam\" --state float
|
chunkc tiling::rule --owner \"Steam\" --state float
|
||||||
chunkc tiling::rule --owner \"Stickies\" --state float
|
chunkc tiling::rule --owner \"Stickies\" --state float
|
||||||
chunkc tiling::rule --owner \"System Preferences\" --state float
|
chunkc tiling::rule --owner \"System Preferences\" --state float
|
||||||
|
chunkc tiling::rule --owner \"Emacs\" --state tile
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,57 @@
|
||||||
call plug#begin()
|
call plug#begin()
|
||||||
|
" Why?
|
||||||
Plug 'tpope/vim-fugitive'
|
Plug 'tpope/vim-fugitive'
|
||||||
Plug 'simnalamburt/vim-mundo'
|
|
||||||
Plug 'easymotion/vim-easymotion'
|
" Auto linting! See triggers below, plus built-in ones at https://github.com/neomake/neomake/blob/master/autoload/neomake/makers/ft/ruby.vim
|
||||||
Plug 'vim-scripts/Align'
|
Plug 'neomake/neomake'
|
||||||
Plug 'neomake/neomake' | Plug 'dojoteef/neomake-autolint'
|
|
||||||
Plug 'Shougo/neosnippet.vim' | Plug 'Shougo/neosnippet-snippets'
|
" General completion. Needs plugins to extend
|
||||||
Plug 'Shougo/deoplete.nvim'
|
Plug 'roxma/nvim-completion-manager'
|
||||||
|
|
||||||
|
" Language-aware fancy things. Needs lang server config. Used, but what for?
|
||||||
|
Plug 'autozimu/LanguageClient-neovim', { 'do': ':UpdateRemotePlugins' }
|
||||||
|
|
||||||
|
" Fancy tab completion; did I ever use it? I think it needs other plugins
|
||||||
|
"Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
||||||
|
|
||||||
|
" Menu browser... I like fzf more for files; this is for neoyank
|
||||||
Plug 'Shougo/denite.nvim' | Plug 'Shougo/neoyank.vim'
|
Plug 'Shougo/denite.nvim' | Plug 'Shougo/neoyank.vim'
|
||||||
|
|
||||||
|
" Snippets... I don't use them
|
||||||
|
"Plug 'Shougo/neosnippet.vim' | Plug 'Shougo/neosnippet-snippets'
|
||||||
|
|
||||||
|
" Show function signature in the command line (see noshowmode below)
|
||||||
|
Plug 'Shougo/echodoc.vim'
|
||||||
|
|
||||||
|
" Undo tree mapped below
|
||||||
|
Plug 'simnalamburt/vim-mundo'
|
||||||
|
|
||||||
|
" Motions... need to actually document them otherwise I forget
|
||||||
|
Plug 'easymotion/vim-easymotion'
|
||||||
|
|
||||||
|
" Align. See mapping below
|
||||||
|
"Plug 'vim-scripts/Align'
|
||||||
|
Plug 'junegunn/vim-easy-align'
|
||||||
|
|
||||||
|
" Opening files/buffers. Mapped below
|
||||||
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
||||||
Plug 'junegunn/fzf.vim'
|
Plug 'junegunn/fzf.vim'
|
||||||
Plug 'junegunn/vim-easy-align'
|
|
||||||
|
" Reopen at the last place
|
||||||
Plug 'dietsche/vim-lastplace'
|
Plug 'dietsche/vim-lastplace'
|
||||||
|
|
||||||
|
" Nice status line
|
||||||
Plug 'itchyny/lightline.vim'
|
Plug 'itchyny/lightline.vim'
|
||||||
|
|
||||||
|
" Color schemes
|
||||||
Plug 'jacoborus/tender.vim'
|
Plug 'jacoborus/tender.vim'
|
||||||
Plug 'ciaranm/inkpot'
|
Plug 'ciaranm/inkpot'
|
||||||
Plug 'twerth/ir_black'
|
Plug 'twerth/ir_black'
|
||||||
|
|
||||||
|
" Various langs
|
||||||
Plug 'rodjek/vim-puppet'
|
Plug 'rodjek/vim-puppet'
|
||||||
|
Plug 'keith/swift.vim'
|
||||||
|
Plug 'hunner/vim-plist'
|
||||||
Plug 'vim-ruby/vim-ruby'
|
Plug 'vim-ruby/vim-ruby'
|
||||||
Plug 'kchmck/vim-coffee-script'
|
Plug 'kchmck/vim-coffee-script'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
@ -110,16 +146,19 @@ noremap <Leader>fed :e ~/.config/nvim/init.vim<CR>
|
||||||
" TODO quickfix for autolint and rake stuff
|
" TODO quickfix for autolint and rake stuff
|
||||||
|
|
||||||
" Only lint when leaving insert or changing text in command mode
|
" Only lint when leaving insert or changing text in command mode
|
||||||
let g:neomake_autolint_events = {
|
call neomake#configure#automake({
|
||||||
\ 'InsertLeave': {'delay': 0},
|
\ 'InsertLeave': {'delay': 0},
|
||||||
\ 'TextChanged': {},
|
\ 'TextChanged': {},
|
||||||
\ }
|
\ }, 500)
|
||||||
|
|
||||||
let g:deoplete#enable_at_startup = 1
|
let g:deoplete#enable_at_startup = 1
|
||||||
|
|
||||||
" Start interactive EasyAlign in visual mode (e.g. vipga)
|
" Start interactive EasyAlign in visual mode (e.g. vipga)
|
||||||
xmap ga <Plug>(EasyAlign)
|
xmap ga <Plug>(EasyAlign)
|
||||||
|
|
||||||
|
" Show echodoc instead of -- INSERT -- in the status line.
|
||||||
|
set noshowmode
|
||||||
|
|
||||||
" Undo files in undodir=~/.local/share/nvim/undo/
|
" Undo files in undodir=~/.local/share/nvim/undo/
|
||||||
" Backup files in backupdir=~/.local/share/nvim/backup/
|
" Backup files in backupdir=~/.local/share/nvim/backup/
|
||||||
set undofile
|
set undofile
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
password =
|
password =
|
||||||
oauth-token =
|
oauth-token =
|
||||||
[gpg]
|
[gpg]
|
||||||
program = gpg2
|
program = gpg
|
||||||
[commit]
|
[commit]
|
||||||
gpgsign = true
|
gpgsign = true
|
||||||
[http]
|
[http]
|
||||||
|
|
|
||||||
4
.khdrc
4
.khdrc
|
|
@ -34,8 +34,8 @@ switcher - r : khd -e "reload" # reload config
|
||||||
#switcher - return : open -na /Applications/Hyper.app;\
|
#switcher - return : open -na /Applications/Hyper.app;\
|
||||||
# khd -e "mode activate default"
|
# khd -e "mode activate default"
|
||||||
|
|
||||||
#cmd - return : osascript /Users/hunner/local/bin/terminal.scpt
|
cmd - return : osascript /Users/hunner/local/bin/terminal.scpt
|
||||||
cmd - return : osascript /Users/hunner/local/bin/iterm_window.scpt
|
#cmd - return : osascript /Users/hunner/local/bin/iterm_window.scpt
|
||||||
cmd + ctrl + alt - 9 : osascript /Users/hunner/local/bin/grayscale.scpt
|
cmd + ctrl + alt - 9 : osascript /Users/hunner/local/bin/grayscale.scpt
|
||||||
|
|
||||||
cmd + alt - h : chunkc tiling::window --focus west
|
cmd + alt - h : chunkc tiling::window --focus west
|
||||||
|
|
|
||||||
|
|
@ -122,6 +122,7 @@ blacklists an application from Kwms tiling
|
||||||
|
|
||||||
kwmc rule owner="Steam" properties={float="true"}
|
kwmc rule owner="Steam" properties={float="true"}
|
||||||
kwmc rule owner="Photoshop" properties={float="true"}
|
kwmc rule owner="Photoshop" properties={float="true"}
|
||||||
|
kwmc rule owner="VOX" properties={float="true"}
|
||||||
*/
|
*/
|
||||||
kwmc rule owner="Lightroom" properties={float="true"}
|
kwmc rule owner="Lightroom" properties={float="true"}
|
||||||
kwmc rule owner="Stickies" properties={float="true"}
|
kwmc rule owner="Stickies" properties={float="true"}
|
||||||
|
|
@ -130,6 +131,7 @@ kwmc rule owner="App Store" properties={float="true"}
|
||||||
kwmc rule owner="Finder" properties={role="AXDialog"}
|
kwmc rule owner="Finder" properties={role="AXDialog"}
|
||||||
kwmc rule owner="Finder" role="AXDialog" properties={float="true"}
|
kwmc rule owner="Finder" role="AXDialog" properties={float="true"}
|
||||||
kwmc rule owner="System Preferences" properties={float="true"}
|
kwmc rule owner="System Preferences" properties={float="true"}
|
||||||
|
kwmc rule owner="Arq" properties={float="true"}
|
||||||
kwmc rule owner="Hyper" properties={role="AXDialog"}
|
kwmc rule owner="Hyper" properties={role="AXDialog"}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -3,28 +3,40 @@
|
||||||
;; It must be stored in your home directory.
|
;; It must be stored in your home directory.
|
||||||
|
|
||||||
(defun dotspacemacs/layers ()
|
(defun dotspacemacs/layers ()
|
||||||
"Configuration Layers declaration.
|
"Layer configuration:
|
||||||
You should not put any user code in this function besides modifying the variable
|
This function should only modify configuration layer settings."
|
||||||
values."
|
|
||||||
(setq-default
|
(setq-default
|
||||||
;; Base distribution to use. This is a layer contained in the directory
|
;; Base distribution to use. This is a layer contained in the directory
|
||||||
;; `+distribution'. For now available distributions are `spacemacs-base'
|
;; `+distribution'. For now available distributions are `spacemacs-base'
|
||||||
;; or `spacemacs'. (default 'spacemacs)
|
;; or `spacemacs'. (default 'spacemacs)
|
||||||
dotspacemacs-distribution 'spacemacs
|
dotspacemacs-distribution 'spacemacs
|
||||||
|
|
||||||
|
;; Lazy installation of layers (i.e. layers are installed only when a file
|
||||||
|
;; with a supported type is opened). Possible values are `all', `unused'
|
||||||
|
;; and `nil'. `unused' will lazy install only unused layers (i.e. layers
|
||||||
|
;; not listed in variable `dotspacemacs-configuration-layers'), `all' will
|
||||||
|
;; lazy install any layer that support lazy installation even the layers
|
||||||
|
;; listed in `dotspacemacs-configuration-layers'. `nil' disable the lazy
|
||||||
|
;; installation feature and you have to explicitly list a layer in the
|
||||||
|
;; variable `dotspacemacs-configuration-layers' to install it.
|
||||||
|
;; (default 'unused)
|
||||||
|
dotspacemacs-enable-lazy-installation 'unused
|
||||||
|
|
||||||
|
;; If non-nil then Spacemacs will ask for confirmation before installing
|
||||||
|
;; a layer lazily. (default t)
|
||||||
|
dotspacemacs-ask-for-lazy-installation t
|
||||||
|
|
||||||
;; If non-nil layers with lazy install support are lazy installed.
|
;; If non-nil layers with lazy install support are lazy installed.
|
||||||
;; (default nil)
|
|
||||||
dotspacemacs-enable-lazy-installation nil
|
|
||||||
;; List of additional paths where to look for configuration layers.
|
;; List of additional paths where to look for configuration layers.
|
||||||
;; Paths must have a trailing slash (i.e. `~/.mycontribs/')
|
;; Paths must have a trailing slash (i.e. `~/.mycontribs/')
|
||||||
dotspacemacs-configuration-layer-path '("~/.spacemacs.d/private/")
|
dotspacemacs-configuration-layer-path '("~/.spacemacs.d/private/")
|
||||||
;; List of configuration layers to load. If it is the symbol `all' instead
|
;; List of configuration layers to load.
|
||||||
;; of a list then all discovered layers will be installed.
|
|
||||||
dotspacemacs-configuration-layers
|
dotspacemacs-configuration-layers
|
||||||
'(
|
'(
|
||||||
;; ----------------------------------------------------------------
|
;; ----------------------------------------------------------------
|
||||||
;; Example of useful layers you may want to use right away.
|
;; Example of useful layers you may want to use right away.
|
||||||
;; Uncomment some layer names and press <SPC f e R> (Vim style) or
|
;; Uncomment some layer names and press `SPC f e R' (Vim style) or
|
||||||
;; <M-m f e R> (Emacs style) to install them.
|
;; `M-m f e R' (Emacs style) to install them.
|
||||||
;; ----------------------------------------------------------------
|
;; ----------------------------------------------------------------
|
||||||
(auto-completion :variables
|
(auto-completion :variables
|
||||||
auto-completion-enable-help-tooltip t
|
auto-completion-enable-help-tooltip t
|
||||||
|
|
@ -35,6 +47,7 @@ values."
|
||||||
git
|
git
|
||||||
github
|
github
|
||||||
hoon
|
hoon
|
||||||
|
javascript
|
||||||
markdown
|
markdown
|
||||||
org
|
org
|
||||||
puppet
|
puppet
|
||||||
|
|
@ -45,7 +58,6 @@ values."
|
||||||
shell-default-shell 'multi-term)
|
shell-default-shell 'multi-term)
|
||||||
;; shell-default-height 30
|
;; shell-default-height 30
|
||||||
;; shell-default-position 'bottom)
|
;; shell-default-position 'bottom)
|
||||||
spacemacs-helm
|
|
||||||
spacemacs-layouts
|
spacemacs-layouts
|
||||||
spell-checking
|
spell-checking
|
||||||
syntax-checking
|
syntax-checking
|
||||||
|
|
@ -55,46 +67,88 @@ values."
|
||||||
vimscript
|
vimscript
|
||||||
yaml
|
yaml
|
||||||
)
|
)
|
||||||
|
|
||||||
;; List of additional packages that will be installed without being
|
;; List of additional packages that will be installed without being
|
||||||
;; wrapped in a layer. If you need some configuration for these
|
;; wrapped in a layer. If you need some configuration for these
|
||||||
;; packages, then consider creating a layer. You can also put the
|
;; packages, then consider creating a layer. You can also put the
|
||||||
;; configuration in `dotspacemacs/user-config'.
|
;; configuration in `dotspacemacs/user-config'.
|
||||||
|
;; To use a local version of a package, use the `:location' property:
|
||||||
|
;; '(your-package :location "~/path/to/your-package/")
|
||||||
|
;; Also include the dependencies as they will not be resolved automatically.
|
||||||
dotspacemacs-additional-packages '()
|
dotspacemacs-additional-packages '()
|
||||||
;; A list of packages and/or extensions that will not be install and loaded.
|
|
||||||
|
;; A list of packages that cannot be updated.
|
||||||
|
dotspacemacs-frozen-packages '()
|
||||||
|
|
||||||
|
;; A list of packages that will not be installed and loaded.
|
||||||
dotspacemacs-excluded-packages '()
|
dotspacemacs-excluded-packages '()
|
||||||
;; If non-nil spacemacs will delete any orphan packages, i.e. packages that
|
|
||||||
;; are declared in a layer which is not a member of
|
;; Defines the behaviour of Spacemacs when installing packages.
|
||||||
;; the list `dotspacemacs-configuration-layers'. (default t)
|
;; Possible values are `used-only', `used-but-keep-unused' and `all'.
|
||||||
dotspacemacs-delete-orphan-packages t))
|
;; `used-only' installs only explicitly used packages and deletes any unused
|
||||||
|
;; packages as well as their unused dependencies. `used-but-keep-unused'
|
||||||
|
;; installs only the used packages but won't delete unused ones. `all'
|
||||||
|
;; installs *all* packages supported by Spacemacs and never uninstalls them.
|
||||||
|
;; (default is `used-only')
|
||||||
|
dotspacemacs-install-packages 'used-only))
|
||||||
|
|
||||||
(defun dotspacemacs/init ()
|
(defun dotspacemacs/init ()
|
||||||
"Initialization function.
|
"Initialization:
|
||||||
This function is called at the very startup of Spacemacs initialization
|
This function is called at the very beginning of Spacemacs startup,
|
||||||
before layers configuration.
|
before layer configuration.
|
||||||
You should not put any user code in there besides modifying the variable
|
It should only modify the values of Spacemacs settings."
|
||||||
values."
|
|
||||||
;; This setq-default sexp is an exhaustive list of all the supported
|
;; This setq-default sexp is an exhaustive list of all the supported
|
||||||
;; spacemacs settings.
|
;; spacemacs settings.
|
||||||
(setq-default
|
(setq-default
|
||||||
;; If non nil ELPA repositories are contacted via HTTPS whenever it's
|
;; If non-nil ELPA repositories are contacted via HTTPS whenever it's
|
||||||
;; possible. Set it to nil if you have no way to use HTTPS in your
|
;; possible. Set it to nil if you have no way to use HTTPS in your
|
||||||
;; environment, otherwise it is strongly recommended to let it set to t.
|
;; environment, otherwise it is strongly recommended to let it set to t.
|
||||||
;; This variable has no effect if Emacs is launched with the parameter
|
;; This variable has no effect if Emacs is launched with the parameter
|
||||||
;; `--insecure' which forces the value of this variable to nil.
|
;; `--insecure' which forces the value of this variable to nil.
|
||||||
;; (default t)
|
;; (default t)
|
||||||
dotspacemacs-elpa-https t
|
dotspacemacs-elpa-https t
|
||||||
|
|
||||||
;; Maximum allowed time in seconds to contact an ELPA repository.
|
;; Maximum allowed time in seconds to contact an ELPA repository.
|
||||||
|
;; (default 5)
|
||||||
dotspacemacs-elpa-timeout 5
|
dotspacemacs-elpa-timeout 5
|
||||||
;; If non nil then spacemacs will check for updates at startup
|
|
||||||
;; when the current branch is not `develop'. (default t)
|
;; Set `gc-cons-threshold' and `gc-cons-percentage' when startup finishes.
|
||||||
dotspacemacs-check-for-update t
|
;; This is an advanced option and should not be changed unless you suspect
|
||||||
;; One of `vim', `emacs' or `hybrid'. Evil is always enabled but if the
|
;; performance issues due to garbage collection operations.
|
||||||
;; variable is `emacs' then the `holy-mode' is enabled at startup. `hybrid'
|
;; (default '(100000000 0.1))
|
||||||
;; uses emacs key bindings for vim's insert mode, but otherwise leaves evil
|
dotspacemacs-gc-cons '(100000000 0.1)
|
||||||
;; unchanged. (default 'vim)
|
|
||||||
|
;; If non-nil then Spacelpa repository is the primary source to install
|
||||||
|
;; a locked version of packages. If nil then Spacemacs will install the
|
||||||
|
;; lastest version of packages from MELPA. (default nil)
|
||||||
|
dotspacemacs-use-spacelpa nil
|
||||||
|
|
||||||
|
;; If non-nil then verify the signature for downloaded Spacelpa archives.
|
||||||
|
;; (default nil)
|
||||||
|
dotspacemacs-verify-spacelpa-archives nil
|
||||||
|
|
||||||
|
;; If non-nil then spacemacs will check for updates at startup
|
||||||
|
;; when the current branch is not `develop'. Note that checking for
|
||||||
|
;; new versions works via git commands, thus it calls GitHub services
|
||||||
|
;; whenever you start Emacs. (default nil)
|
||||||
|
dotspacemacs-check-for-update nil
|
||||||
|
|
||||||
|
;; If non-nil, a form that evaluates to a package directory. For example, to
|
||||||
|
;; use different package directories for different Emacs versions, set this
|
||||||
|
;; to `emacs-version'. (default 'emacs-version)
|
||||||
|
dotspacemacs-elpa-subdirectory 'emacs-version
|
||||||
|
|
||||||
|
;; One of `vim', `emacs' or `hybrid'.
|
||||||
|
;; `hybrid' is like `vim' except that `insert state' is replaced by the
|
||||||
|
;; `hybrid state' with `emacs' key bindings. The value can also be a list
|
||||||
|
;; with `:variables' keyword (similar to layers). Check the editing styles
|
||||||
|
;; section of the documentation for details on available variables.
|
||||||
|
;; (default 'vim)
|
||||||
dotspacemacs-editing-style 'vim
|
dotspacemacs-editing-style 'vim
|
||||||
;; If non nil output loading progress in `*Messages*' buffer. (default nil)
|
|
||||||
|
;; If non-nil output loading progress in `*Messages*' buffer. (default nil)
|
||||||
dotspacemacs-verbose-loading nil
|
dotspacemacs-verbose-loading nil
|
||||||
|
|
||||||
;; Specify the startup banner. Default value is `official', it displays
|
;; Specify the startup banner. Default value is `official', it displays
|
||||||
;; the official spacemacs logo. An integer value is the index of text
|
;; the official spacemacs logo. An integer value is the index of text
|
||||||
;; banner, `random' chooses a random text banner in `core/banners'
|
;; banner, `random' chooses a random text banner in `core/banners'
|
||||||
|
|
@ -102,162 +156,271 @@ values."
|
||||||
;; by your Emacs build.
|
;; by your Emacs build.
|
||||||
;; If the value is nil then no banner is displayed. (default 'official)
|
;; If the value is nil then no banner is displayed. (default 'official)
|
||||||
dotspacemacs-startup-banner 'official
|
dotspacemacs-startup-banner 'official
|
||||||
;; List of items to show in the startup buffer. If nil it is disabled.
|
|
||||||
;; Possible values are: `recents' `bookmarks' `projects' `agenda' `todos'.
|
;; List of items to show in startup buffer or an association list of
|
||||||
;; (default '(recents projects))
|
;; the form `(list-type . list-size)`. If nil then it is disabled.
|
||||||
dotspacemacs-startup-lists '(recents projects)
|
;; Possible values for list-type are:
|
||||||
;; Number of recent files to show in the startup buffer. Ignored if
|
;; `recents' `bookmarks' `projects' `agenda' `todos'.
|
||||||
;; `dotspacemacs-startup-lists' doesn't include `recents'. (default 5)
|
;; List sizes may be nil, in which case
|
||||||
dotspacemacs-startup-recent-list-size 5
|
;; `spacemacs-buffer-startup-lists-length' takes effect.
|
||||||
|
dotspacemacs-startup-lists '((recents . 5)
|
||||||
|
(projects . 7))
|
||||||
|
|
||||||
|
;; True if the home buffer should respond to resize events. (default t)
|
||||||
|
dotspacemacs-startup-buffer-responsive t
|
||||||
|
|
||||||
;; Default major mode of the scratch buffer (default `text-mode')
|
;; Default major mode of the scratch buffer (default `text-mode')
|
||||||
dotspacemacs-scratch-mode 'puppet-mode
|
dotspacemacs-scratch-mode 'puppet-mode
|
||||||
;; List of themes, the first of the list is loaded when spacemacs starts.
|
;; List of themes, the first of the list is loaded when spacemacs starts.
|
||||||
;; Press <SPC> T n to cycle to the next theme in the list (works great
|
;; Press `SPC T n' to cycle to the next theme in the list (works great
|
||||||
;; with 2 themes variants, one dark and one light)
|
;; with 2 themes variants, one dark and one light)
|
||||||
dotspacemacs-themes '(monokai
|
dotspacemacs-themes '(monokai
|
||||||
molokai
|
molokai
|
||||||
smyx)
|
smyx)
|
||||||
;; If non nil the cursor color matches the state color in GUI Emacs.
|
;; If non-nil the cursor color matches the state color in GUI Emacs.
|
||||||
|
;; (default t)
|
||||||
dotspacemacs-colorize-cursor-according-to-state t
|
dotspacemacs-colorize-cursor-according-to-state t
|
||||||
;; Default font. `powerline-scale' allows to quickly tweak the mode-line
|
|
||||||
;; size to make separators look not too crappy.
|
;; Default font, or prioritized list of fonts. `powerline-scale' allows to
|
||||||
|
;; quickly tweak the mode-line size to make separators look not too crappy.
|
||||||
dotspacemacs-default-font '("Droid Sans Mono Dotted for Powerline"
|
dotspacemacs-default-font '("Droid Sans Mono Dotted for Powerline"
|
||||||
:size 26
|
:size 26
|
||||||
:weight normal
|
:weight normal
|
||||||
:width normal
|
:width normal
|
||||||
:powerline-scale 1.1)
|
:powerline-scale 1.1)
|
||||||
;; The leader key
|
;; The leader key (default "SPC")
|
||||||
dotspacemacs-leader-key "SPC"
|
dotspacemacs-leader-key "SPC"
|
||||||
|
|
||||||
|
;; The key used for Emacs commands `M-x' (after pressing on the leader key).
|
||||||
|
;; (default "SPC")
|
||||||
|
dotspacemacs-emacs-command-key "SPC"
|
||||||
|
|
||||||
|
;; The key used for Vim Ex commands (default ":")
|
||||||
|
dotspacemacs-ex-command-key ":"
|
||||||
|
|
||||||
;; The leader key accessible in `emacs state' and `insert state'
|
;; The leader key accessible in `emacs state' and `insert state'
|
||||||
;; (default "M-m")
|
;; (default "M-m")
|
||||||
dotspacemacs-emacs-leader-key "M-m"
|
dotspacemacs-emacs-leader-key "M-m"
|
||||||
|
|
||||||
;; Major mode leader key is a shortcut key which is the equivalent of
|
;; Major mode leader key is a shortcut key which is the equivalent of
|
||||||
;; pressing `<leader> m`. Set it to `nil` to disable it. (default ",")
|
;; pressing `<leader> m`. Set it to `nil` to disable it. (default ",")
|
||||||
dotspacemacs-major-mode-leader-key ","
|
dotspacemacs-major-mode-leader-key ","
|
||||||
|
|
||||||
;; Major mode leader key accessible in `emacs state' and `insert state'.
|
;; Major mode leader key accessible in `emacs state' and `insert state'.
|
||||||
;; (default "C-M-m)
|
;; (default "C-M-m")
|
||||||
dotspacemacs-major-mode-emacs-leader-key "C-M-m"
|
dotspacemacs-major-mode-emacs-leader-key "C-M-m"
|
||||||
;; The key used for Emacs commands (M-x) (after pressing on the leader key).
|
|
||||||
;; (default "SPC")
|
|
||||||
dotspacemacs-emacs-command-key "SPC"
|
|
||||||
;; These variables control whether separate commands are bound in the GUI to
|
;; These variables control whether separate commands are bound in the GUI to
|
||||||
;; the key pairs C-i, TAB and C-m, RET.
|
;; the key pairs `C-i', `TAB' and `C-m', `RET'.
|
||||||
;; Setting it to a non-nil value, allows for separate commands under <C-i>
|
;; Setting it to a non-nil value, allows for separate commands under `C-i'
|
||||||
;; and TAB or <C-m> and RET.
|
;; and TAB or `C-m' and `RET'.
|
||||||
;; In the terminal, these pairs are generally indistinguishable, so this only
|
;; In the terminal, these pairs are generally indistinguishable, so this only
|
||||||
;; works in the GUI. (default nil)
|
;; works in the GUI. (default nil)
|
||||||
dotspacemacs-distinguish-gui-tab nil
|
dotspacemacs-distinguish-gui-tab nil
|
||||||
;; (Not implemented) dotspacemacs-distinguish-gui-ret nil
|
|
||||||
;; The command key used for Evil commands (ex-commands) and
|
;; If non-nil `Y' is remapped to `y$' in Evil states. (default nil)
|
||||||
;; Emacs commands (M-x).
|
dotspacemacs-remap-Y-to-y$ nil
|
||||||
;; By default the command key is `:' so ex-commands are executed like in Vim
|
|
||||||
;; with `:' and Emacs commands are executed with `<leader> :'.
|
;; If non-nil, the shift mappings `<' and `>' retain visual state if used
|
||||||
dotspacemacs-command-key ":"
|
;; there. (default t)
|
||||||
;; If non nil `Y' is remapped to `y$'. (default t)
|
dotspacemacs-retain-visual-state-on-shift t
|
||||||
dotspacemacs-remap-Y-to-y$ t
|
|
||||||
|
;; If non-nil, `J' and `K' move lines up and down when in visual mode.
|
||||||
|
;; (default nil)
|
||||||
|
dotspacemacs-visual-line-move-text nil
|
||||||
|
|
||||||
|
;; If non-nil, inverse the meaning of `g' in `:substitute' Evil ex-command.
|
||||||
|
;; (default nil)
|
||||||
|
dotspacemacs-ex-substitute-global nil
|
||||||
|
|
||||||
;; Name of the default layout (default "Default")
|
;; Name of the default layout (default "Default")
|
||||||
dotspacemacs-default-layout-name "Default"
|
dotspacemacs-default-layout-name "Default"
|
||||||
;; If non nil the default layout name is displayed in the mode-line.
|
|
||||||
|
;; If non-nil the default layout name is displayed in the mode-line.
|
||||||
;; (default nil)
|
;; (default nil)
|
||||||
dotspacemacs-display-default-layout nil
|
dotspacemacs-display-default-layout nil
|
||||||
;; If non nil then the last auto saved layouts are resume automatically upon
|
|
||||||
|
;; If non-nil then the last auto saved layouts are resumed automatically upon
|
||||||
;; start. (default nil)
|
;; start. (default nil)
|
||||||
dotspacemacs-auto-resume-layouts nil
|
dotspacemacs-auto-resume-layouts nil
|
||||||
|
|
||||||
|
;; If non-nil, auto-generate layout name when creating new layouts. Only has
|
||||||
|
;; effect when using the "jump to layout by number" commands. (default nil)
|
||||||
|
dotspacemacs-auto-generate-layout-names nil
|
||||||
|
|
||||||
|
;; Size (in MB) above which spacemacs will prompt to open the large file
|
||||||
|
;; literally to avoid performance issues. Opening a file literally means that
|
||||||
|
;; no major mode or minor modes are active. (default is 1)
|
||||||
|
dotspacemacs-large-file-size 1
|
||||||
|
|
||||||
;; Location where to auto-save files. Possible values are `original' to
|
;; Location where to auto-save files. Possible values are `original' to
|
||||||
;; auto-save the file in-place, `cache' to auto-save the file to another
|
;; auto-save the file in-place, `cache' to auto-save the file to another
|
||||||
;; file stored in the cache directory and `nil' to disable auto-saving.
|
;; file stored in the cache directory and `nil' to disable auto-saving.
|
||||||
;; (default 'cache)
|
;; (default 'cache)
|
||||||
dotspacemacs-auto-save-file-location 'cache
|
dotspacemacs-auto-save-file-location 'cache
|
||||||
|
|
||||||
;; Maximum number of rollback slots to keep in the cache. (default 5)
|
;; Maximum number of rollback slots to keep in the cache. (default 5)
|
||||||
dotspacemacs-max-rollback-slots 5
|
dotspacemacs-max-rollback-slots 5
|
||||||
;; If non nil then `ido' replaces `helm' for some commands. For now only
|
|
||||||
;; `find-files' (SPC f f), `find-spacemacs-file' (SPC f e s), and
|
;; If non-nil, `helm' will try to minimize the space it uses. (default nil)
|
||||||
;; `find-contrib-file' (SPC f e c) are replaced. (default nil)
|
|
||||||
dotspacemacs-use-ido nil
|
|
||||||
;; If non nil, `helm' will try to minimize the space it uses. (default nil)
|
|
||||||
dotspacemacs-helm-resize nil
|
dotspacemacs-helm-resize nil
|
||||||
;; if non nil, the helm header is hidden when there is only one source.
|
|
||||||
|
;; if non-nil, the helm header is hidden when there is only one source.
|
||||||
;; (default nil)
|
;; (default nil)
|
||||||
dotspacemacs-helm-no-header nil
|
dotspacemacs-helm-no-header nil
|
||||||
|
|
||||||
;; define the position to display `helm', options are `bottom', `top',
|
;; define the position to display `helm', options are `bottom', `top',
|
||||||
;; `left', or `right'. (default 'bottom)
|
;; `left', or `right'. (default 'bottom)
|
||||||
dotspacemacs-helm-position 'bottom
|
dotspacemacs-helm-position 'bottom
|
||||||
;; If non nil the paste micro-state is enabled. When enabled pressing `p`
|
|
||||||
;; several times cycle between the kill ring content. (default nil)
|
;; Controls fuzzy matching in helm. If set to `always', force fuzzy matching
|
||||||
dotspacemacs-enable-paste-transient-state t
|
;; in all non-asynchronous sources. If set to `source', preserve individual
|
||||||
|
;; source settings. Else, disable fuzzy matching in all sources.
|
||||||
|
;; (default 'always)
|
||||||
|
dotspacemacs-helm-use-fuzzy 'always
|
||||||
|
|
||||||
|
;; If non-nil, the paste transient-state is enabled. While enabled, pressing
|
||||||
|
;; `p' several times cycles through the elements in the `kill-ring'.
|
||||||
|
;; (default nil)
|
||||||
|
dotspacemacs-enable-paste-transient-state nil
|
||||||
|
|
||||||
;; Which-key delay in seconds. The which-key buffer is the popup listing
|
;; Which-key delay in seconds. The which-key buffer is the popup listing
|
||||||
;; the commands bound to the current keystroke sequence. (default 0.4)
|
;; the commands bound to the current keystroke sequence. (default 0.4)
|
||||||
dotspacemacs-which-key-delay 0.4
|
dotspacemacs-which-key-delay 0.4
|
||||||
|
|
||||||
;; Which-key frame position. Possible values are `right', `bottom' and
|
;; Which-key frame position. Possible values are `right', `bottom' and
|
||||||
;; `right-then-bottom'. right-then-bottom tries to display the frame to the
|
;; `right-then-bottom'. right-then-bottom tries to display the frame to the
|
||||||
;; right; if there is insufficient space it displays it at the bottom.
|
;; right; if there is insufficient space it displays it at the bottom.
|
||||||
;; (default 'bottom)
|
;; (default 'bottom)
|
||||||
dotspacemacs-which-key-position 'right
|
dotspacemacs-which-key-position 'right
|
||||||
;; If non nil a progress bar is displayed when spacemacs is loading. This
|
;; Control where `switch-to-buffer' displays the buffer. If nil,
|
||||||
|
;; `switch-to-buffer' displays the buffer in the current window even if
|
||||||
|
;; another same-purpose window is available. If non-nil, `switch-to-buffer'
|
||||||
|
;; displays the buffer in a same-purpose window even if the buffer can be
|
||||||
|
;; displayed in the current window. (default nil)
|
||||||
|
dotspacemacs-switch-to-buffer-prefers-purpose nil
|
||||||
|
|
||||||
|
;; If non-nil a progress bar is displayed when spacemacs is loading. This
|
||||||
;; may increase the boot time on some systems and emacs builds, set it to
|
;; may increase the boot time on some systems and emacs builds, set it to
|
||||||
;; nil to boost the loading time. (default t)
|
;; nil to boost the loading time. (default t)
|
||||||
dotspacemacs-loading-progress-bar t
|
dotspacemacs-loading-progress-bar t
|
||||||
;; If non nil the frame is fullscreen when Emacs starts up. (default nil)
|
|
||||||
|
;; If non-nil the frame is fullscreen when Emacs starts up. (default nil)
|
||||||
;; (Emacs 24.4+ only)
|
;; (Emacs 24.4+ only)
|
||||||
dotspacemacs-fullscreen-at-startup nil
|
dotspacemacs-fullscreen-at-startup nil
|
||||||
;; If non nil `spacemacs/toggle-fullscreen' will not use native fullscreen.
|
|
||||||
|
;; If non-nil `spacemacs/toggle-fullscreen' will not use native fullscreen.
|
||||||
;; Use to disable fullscreen animations in OSX. (default nil)
|
;; Use to disable fullscreen animations in OSX. (default nil)
|
||||||
dotspacemacs-fullscreen-use-non-native nil
|
dotspacemacs-fullscreen-use-non-native nil
|
||||||
;; If non nil the frame is maximized when Emacs starts up.
|
|
||||||
|
;; If non-nil the frame is maximized when Emacs starts up.
|
||||||
;; Takes effect only if `dotspacemacs-fullscreen-at-startup' is nil.
|
;; Takes effect only if `dotspacemacs-fullscreen-at-startup' is nil.
|
||||||
;; (default nil) (Emacs 24.4+ only)
|
;; (default nil) (Emacs 24.4+ only)
|
||||||
dotspacemacs-maximized-at-startup nil
|
dotspacemacs-maximized-at-startup nil
|
||||||
|
|
||||||
;; A value from the range (0..100), in increasing opacity, which describes
|
;; A value from the range (0..100), in increasing opacity, which describes
|
||||||
;; the transparency level of a frame when it's active or selected.
|
;; the transparency level of a frame when it's active or selected.
|
||||||
;; Transparency can be toggled through `toggle-transparency'. (default 90)
|
;; Transparency can be toggled through `toggle-transparency'. (default 90)
|
||||||
dotspacemacs-active-transparency 90
|
dotspacemacs-active-transparency 90
|
||||||
|
|
||||||
;; A value from the range (0..100), in increasing opacity, which describes
|
;; A value from the range (0..100), in increasing opacity, which describes
|
||||||
;; the transparency level of a frame when it's inactive or deselected.
|
;; the transparency level of a frame when it's inactive or deselected.
|
||||||
;; Transparency can be toggled through `toggle-transparency'. (default 90)
|
;; Transparency can be toggled through `toggle-transparency'. (default 90)
|
||||||
dotspacemacs-inactive-transparency 90
|
dotspacemacs-inactive-transparency 90
|
||||||
;; If non nil show the titles of transient states. (default t)
|
|
||||||
|
;; If non-nil show the titles of transient states. (default t)
|
||||||
dotspacemacs-show-transient-state-title t
|
dotspacemacs-show-transient-state-title t
|
||||||
;; If non nil show the color guide hint for transient state keys. (default t)
|
|
||||||
|
;; If non-nil show the color guide hint for transient state keys. (default t)
|
||||||
dotspacemacs-show-transient-state-color-guide t
|
dotspacemacs-show-transient-state-color-guide t
|
||||||
;; If non nil unicode symbols are displayed in the mode line. (default t)
|
|
||||||
|
;; If non-nil unicode symbols are displayed in the mode line. (default t)
|
||||||
dotspacemacs-mode-line-unicode-symbols t
|
dotspacemacs-mode-line-unicode-symbols t
|
||||||
;; If non nil smooth scrolling (native-scrolling) is enabled. Smooth
|
|
||||||
|
;; If non-nil smooth scrolling (native-scrolling) is enabled. Smooth
|
||||||
;; scrolling overrides the default behavior of Emacs which recenters point
|
;; scrolling overrides the default behavior of Emacs which recenters point
|
||||||
;; when it reaches the top or bottom of the screen. (default t)
|
;; when it reaches the top or bottom of the screen. (default t)
|
||||||
dotspacemacs-smooth-scrolling t
|
dotspacemacs-smooth-scrolling t
|
||||||
;; If non nil line numbers are turned on in all `prog-mode' and `text-mode'
|
|
||||||
;; derivatives. If set to `relative', also turns on relative line numbers.
|
;; Control line numbers activation.
|
||||||
|
;; If set to `t' or `relative' line numbers are turned on in all `prog-mode' and
|
||||||
|
;; `text-mode' derivatives. If set to `relative', line numbers are relative.
|
||||||
|
;; This variable can also be set to a property list for finer control:
|
||||||
|
;; '(:relative nil
|
||||||
|
;; :disabled-for-modes dired-mode
|
||||||
|
;; doc-view-mode
|
||||||
|
;; markdown-mode
|
||||||
|
;; org-mode
|
||||||
|
;; pdf-view-mode
|
||||||
|
;; text-mode
|
||||||
|
;; :size-limit-kb 1000)
|
||||||
;; (default nil)
|
;; (default nil)
|
||||||
dotspacemacs-line-numbers nil
|
dotspacemacs-line-numbers nil
|
||||||
;; If non-nil smartparens-strict-mode will be enabled in programming modes.
|
|
||||||
|
;; Code folding method. Possible values are `evil' and `origami'.
|
||||||
|
;; (default 'evil)
|
||||||
|
dotspacemacs-folding-method 'evil
|
||||||
|
|
||||||
|
;; If non-nil `smartparens-strict-mode' will be enabled in programming modes.
|
||||||
;; (default nil)
|
;; (default nil)
|
||||||
dotspacemacs-smartparens-strict-mode nil
|
dotspacemacs-smartparens-strict-mode nil
|
||||||
|
|
||||||
;; If non-nil pressing the closing parenthesis `)' key in insert mode passes
|
;; If non-nil pressing the closing parenthesis `)' key in insert mode passes
|
||||||
;; over any automatically added closing parenthesis, bracket, quote, etc…
|
;; over any automatically added closing parenthesis, bracket, quote, etc…
|
||||||
;; This can be temporary disabled by pressing `C-q' before `)'. (default nil)
|
;; This can be temporary disabled by pressing `C-q' before `)'. (default nil)
|
||||||
dotspacemacs-smart-closing-parenthesis nil
|
dotspacemacs-smart-closing-parenthesis nil
|
||||||
|
|
||||||
;; Select a scope to highlight delimiters. Possible values are `any',
|
;; Select a scope to highlight delimiters. Possible values are `any',
|
||||||
;; `current', `all' or `nil'. Default is `all' (highlight any scope and
|
;; `current', `all' or `nil'. Default is `all' (highlight any scope and
|
||||||
;; emphasis the current one). (default 'all)
|
;; emphasis the current one). (default 'all)
|
||||||
dotspacemacs-highlight-delimiters 'all
|
dotspacemacs-highlight-delimiters 'all
|
||||||
;; If non nil advises quit functions to keep server open when quitting.
|
|
||||||
|
;; If non-nil, advise quit functions to keep server open when quitting.
|
||||||
;; (default nil)
|
;; (default nil)
|
||||||
dotspacemacs-persistent-server nil
|
dotspacemacs-persistent-server nil
|
||||||
|
|
||||||
;; List of search tool executable names. Spacemacs uses the first installed
|
;; List of search tool executable names. Spacemacs uses the first installed
|
||||||
;; tool of the list. Supported tools are `ag', `pt', `ack' and `grep'.
|
;; tool of the list. Supported tools are `rg', `ag', `pt', `ack' and `grep'.
|
||||||
;; (default '("ag" "pt" "ack" "grep"))
|
;; (default '("rg" "ag" "pt" "ack" "grep"))
|
||||||
dotspacemacs-search-tools '("ag" "pt" "ack" "grep")
|
dotspacemacs-search-tools '("rg" "ag" "pt" "ack" "grep")
|
||||||
;; The default package repository used if no explicit repository has been
|
|
||||||
;; specified with an installed package.
|
;; Format specification for setting the frame title.
|
||||||
;; Not used for now. (default nil)
|
;; %a - the `abbreviated-file-name', or `buffer-name'
|
||||||
dotspacemacs-default-package-repository nil
|
;; %t - `projectile-project-name'
|
||||||
|
;; %I - `invocation-name'
|
||||||
|
;; %S - `system-name'
|
||||||
|
;; %U - contents of $USER
|
||||||
|
;; %b - buffer name
|
||||||
|
;; %f - visited file name
|
||||||
|
;; %F - frame name
|
||||||
|
;; %s - process status
|
||||||
|
;; %p - percent of buffer above top of window, or Top, Bot or All
|
||||||
|
;; %P - percent of buffer above bottom of window, perhaps plus Top, or Bot or All
|
||||||
|
;; %m - mode name
|
||||||
|
;; %n - Narrow if appropriate
|
||||||
|
;; %z - mnemonics of buffer, terminal, and keyboard coding systems
|
||||||
|
;; %Z - like %z, but including the end-of-line format
|
||||||
|
;; (default "%I@%S")
|
||||||
|
dotspacemacs-frame-title-format "%I@%S"
|
||||||
|
|
||||||
|
;; Format specification for setting the icon title format
|
||||||
|
;; (default nil - same as frame-title-format)
|
||||||
|
dotspacemacs-icon-title-format nil
|
||||||
|
|
||||||
;; Delete whitespace while saving buffer. Possible values are `all'
|
;; Delete whitespace while saving buffer. Possible values are `all'
|
||||||
;; to aggressively delete empty line and long sequences of whitespace,
|
;; to aggressively delete empty line and long sequences of whitespace,
|
||||||
;; `trailing' to delete only the whitespace at end of lines, `changed'to
|
;; `trailing' to delete only the whitespace at end of lines, `changed' to
|
||||||
;; delete only whitespace for changed lines or `nil' to disable cleanup.
|
;; delete only whitespace for changed lines or `nil' to disable cleanup.
|
||||||
;; (default nil)
|
;; (default nil)
|
||||||
dotspacemacs-whitespace-cleanup 'changed
|
dotspacemacs-whitespace-cleanup 'changed
|
||||||
))
|
;; Either nil or a number of seconds. If non-nil zone out after the specified
|
||||||
|
;; number of seconds. (default nil)
|
||||||
|
dotspacemacs-zone-out-when-idle nil
|
||||||
|
|
||||||
|
;; Run `spacemacs/prettify-org-buffer' when
|
||||||
|
;; visiting README.org files of Spacemacs.
|
||||||
|
;; (default nil)
|
||||||
|
dotspacemacs-pretty-docs nil))
|
||||||
|
|
||||||
(defun dotspacemacs/user-init ()
|
(defun dotspacemacs/user-init ()
|
||||||
"Initialization function for user code.
|
"Initialization function for user code.
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,12 @@ bind Up swap-pane -U
|
||||||
bind Down swap-pane -D
|
bind Down swap-pane -D
|
||||||
#bind Right swap-pane -R
|
#bind Right swap-pane -R
|
||||||
|
|
||||||
|
# resizing
|
||||||
|
bind -r C-h resize-pane -L
|
||||||
|
bind -r C-j resize-pane -U
|
||||||
|
bind -r C-k resize-pane -D
|
||||||
|
bind -r C-l resize-pane -R
|
||||||
|
|
||||||
# Reload key
|
# Reload key
|
||||||
bind C-r source-file ~/.tmux.conf
|
bind C-r source-file ~/.tmux.conf
|
||||||
|
|
||||||
|
|
@ -108,6 +114,7 @@ setw -g window-status-current-fg "#000000"
|
||||||
|
|
||||||
|
|
||||||
### Status bar
|
### Status bar
|
||||||
|
set-option -g allow-rename off
|
||||||
#set -g status-right "#[fg=magenta] @#H #[fg=cyan]%Y-%m-%d #[fg=yellow]%a #[fg=green]%H:%M #[fg=blue]#(uptime|awk '{split(substr($0, index($0, "load")), a, ":"); print a[2]}')#[default]"
|
#set -g status-right "#[fg=magenta] @#H #[fg=cyan]%Y-%m-%d #[fg=yellow]%a #[fg=green]%H:%M #[fg=blue]#(uptime|awk '{split(substr($0, index($0, "load")), a, ":"); print a[2]}')#[default]"
|
||||||
#set -g status off
|
#set -g status off
|
||||||
#set -g status-utf8 on
|
#set -g status-utf8 on
|
||||||
|
|
|
||||||
1
.zshrc
1
.zshrc
|
|
@ -181,6 +181,7 @@ export VISUAL="$VIM -f"
|
||||||
export EDITOR="$VIM -f"
|
export EDITOR="$VIM -f"
|
||||||
alias vh="mvim -c 'au VimLeave * maca hide:'"
|
alias vh="mvim -c 'au VimLeave * maca hide:'"
|
||||||
alias vi=$VIM
|
alias vi=$VIM
|
||||||
|
alias vim=$VIM
|
||||||
alias vr="$VIM --remote-tab"
|
alias vr="$VIM --remote-tab"
|
||||||
alias vl="$VIM --serverlist"
|
alias vl="$VIM --serverlist"
|
||||||
vs() { $VIM --servername $1 --remote-tab $argv[2,$] }
|
vs() { $VIM --servername $1 --remote-tab $argv[2,$] }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue