add mc-lists.
This commit is contained in:
parent
29a96f783d
commit
6c7bc0462c
2
.gitignore
vendored
2
.gitignore
vendored
@ -10,8 +10,6 @@ url
|
|||||||
bookmarks
|
bookmarks
|
||||||
|
|
||||||
elpa
|
elpa
|
||||||
.dir-locals.el
|
|
||||||
.mc-lists.el
|
|
||||||
.python-environments/
|
.python-environments/
|
||||||
tramp
|
tramp
|
||||||
server
|
server
|
||||||
|
25
.mc-lists.el
Normal file
25
.mc-lists.el
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
;; This file is automatically generated by the multiple-cursors extension.
|
||||||
|
;; It keeps track of your preferences for running commands with multiple cursors.
|
||||||
|
|
||||||
|
(setq mc/cmds-to-run-for-all
|
||||||
|
'(
|
||||||
|
dired-do-rename
|
||||||
|
git-rebase-squash
|
||||||
|
git-rebase-undo
|
||||||
|
isearch-forward-regexp
|
||||||
|
isearch-other-control-char
|
||||||
|
isearch-printing-char
|
||||||
|
keyboard-quit
|
||||||
|
kill-region
|
||||||
|
python-indent-electric-colon
|
||||||
|
sgml-slash
|
||||||
|
skeleton-pair-insert-maybe
|
||||||
|
universal-argument-minus
|
||||||
|
))
|
||||||
|
|
||||||
|
(setq mc/cmds-to-run-once
|
||||||
|
'(
|
||||||
|
delete-horizontal-space
|
||||||
|
isearch-delete-char
|
||||||
|
smex
|
||||||
|
))
|
21
init.el
21
init.el
@ -21,9 +21,6 @@
|
|||||||
(when (fboundp 'tool-bar-mode) (tool-bar-mode -1))
|
(when (fboundp 'tool-bar-mode) (tool-bar-mode -1))
|
||||||
(when (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
|
(when (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
|
||||||
|
|
||||||
;; No splash screen please... jeez
|
|
||||||
(setq inhibit-startup-screen t)
|
|
||||||
|
|
||||||
;; =============================================================================
|
;; =============================================================================
|
||||||
;; Load Path Configuration
|
;; Load Path Configuration
|
||||||
;; =============================================================================
|
;; =============================================================================
|
||||||
@ -38,13 +35,12 @@
|
|||||||
;; =============================================================================
|
;; =============================================================================
|
||||||
|
|
||||||
(require 'package)
|
(require 'package)
|
||||||
(when (< emacs-major-version 24)
|
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/") t)
|
||||||
(add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/") t))
|
(add-to-list 'package-archives '("elpa" . "http://tromey.com/elpa/") t)
|
||||||
(add-to-list 'package-archives
|
(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
|
||||||
'("marmalade" . "http://marmalade-repo.org/packages/") t)
|
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t)
|
||||||
(add-to-list 'package-archives
|
|
||||||
'("melpa" . "http://melpa.org/packages/") t)
|
(eval-when-compile (package-initialize))
|
||||||
(package-initialize)
|
|
||||||
|
|
||||||
(defvar packages-appearance
|
(defvar packages-appearance
|
||||||
'(monokai-theme solarized-theme zenburn-theme base16-theme molokai-theme
|
'(monokai-theme solarized-theme zenburn-theme base16-theme molokai-theme
|
||||||
@ -154,7 +150,7 @@
|
|||||||
(ido-everywhere 1)
|
(ido-everywhere 1)
|
||||||
(flx-ido-mode 1)
|
(flx-ido-mode 1)
|
||||||
(setq ido-enable-flex-matching t)
|
(setq ido-enable-flex-matching t)
|
||||||
(blink-cursor-mode nil)
|
(blink-cursor-mode -1)
|
||||||
(projectile-global-mode)
|
(projectile-global-mode)
|
||||||
(require 'helm-projectile)
|
(require 'helm-projectile)
|
||||||
(helm-projectile-on)
|
(helm-projectile-on)
|
||||||
@ -414,6 +410,9 @@ buffer is not visiting a file."
|
|||||||
;; Appearance
|
;; Appearance
|
||||||
;; =============================================================================
|
;; =============================================================================
|
||||||
|
|
||||||
|
;; No splash screen please... jeez
|
||||||
|
(setq inhibit-startup-screen t)
|
||||||
|
|
||||||
;; make whitespace-mode use just basic coloring
|
;; make whitespace-mode use just basic coloring
|
||||||
(setq whitespace-style (quote (spaces tabs newline ;;space-mark
|
(setq whitespace-style (quote (spaces tabs newline ;;space-mark
|
||||||
tab-mark newline-mark)))
|
tab-mark newline-mark)))
|
||||||
|
Loading…
Reference in New Issue
Block a user