General cleanup
This commit is contained in:
parent
a2190b1553
commit
af0a776fa5
10 changed files with 24 additions and 30 deletions
2
Cask
2
Cask
|
@ -61,8 +61,8 @@
|
|||
(depends-on "evil-visualstar")
|
||||
|
||||
;; Editor --- core/core-editor.el
|
||||
(depends-on "ace-window")
|
||||
(depends-on "ace-link")
|
||||
(depends-on "ace-window")
|
||||
(depends-on "avy")
|
||||
(depends-on "dumb-jump")
|
||||
(depends-on "editorconfig")
|
||||
|
|
|
@ -32,8 +32,6 @@ make snippets # install hlissner/emacs-snippets into private/snippets
|
|||
For a more comprehensive byte compile, run `:bc!` (`:bc` will compile the
|
||||
current *.el file).
|
||||
|
||||
|
||||
|
||||
## Features
|
||||
|
||||
To get a picture of what's in here, check out:
|
||||
|
@ -87,4 +85,3 @@ To get a picture of what's in here, check out:
|
|||
|
||||

|
||||
|
||||
|
||||
|
|
|
@ -10,8 +10,6 @@
|
|||
flycheck-disabled-checkers '(emacs-lisp emacs-lisp-checkdoc make))
|
||||
|
||||
:config
|
||||
;; Display warning symbol unicode better
|
||||
(doom-fix-unicode "DejaVu Sans Mono" '(?⚠) 18)
|
||||
(def-popup! " ?\\*Flycheck.+\\*" :align below :size 14 :noselect t :regexp t)
|
||||
|
||||
(unless (> emacs-major-version 24)
|
||||
|
|
|
@ -85,7 +85,9 @@
|
|||
("melpa" . "http://melpa.org/packages/")
|
||||
("org" . "http://orgmode.org/elpa/"))
|
||||
|
||||
byte-compile-warnings nil
|
||||
ad-redefinition-action 'accept ; silence the advised function warnings
|
||||
apropos-do-all t
|
||||
compilation-always-kill t ; kill compl. process before spawning another
|
||||
compilation-ask-about-save nil ; save all buffers before compiling
|
||||
compilation-scroll-output t ; scroll with output while compiling
|
||||
|
|
|
@ -18,7 +18,7 @@ buffers."
|
|||
(interactive)
|
||||
(ivy-read "Kill ring:" (--filter (not (or (< (length it) 3)
|
||||
(string-match-p "\\`[\n[:blank:]]+\\'" it)))
|
||||
(remove-duplicates kill-ring :test' equal))))
|
||||
(remove-duplicates kill-ring :test 'equal))))
|
||||
|
||||
;;;###autoload (autoload 'doom:ivy-recentf "defuns-ivy" nil t)
|
||||
(evil-define-command doom:ivy-recentf (&optional bang)
|
||||
|
|
|
@ -6,19 +6,19 @@ LLVM="clang+llvm-$(LLVMV)-x86_64-apple-darwin"
|
|||
|
||||
#
|
||||
|
||||
all: rust csharp
|
||||
all: rust csharp js sh cc
|
||||
|
||||
rust:
|
||||
@echo "Installing Rust dependencies"
|
||||
git clone --depth 1 --recursive https://github.com/rust-lang/rust.git rust
|
||||
git clone --depth 1 --recursive https://github.com/phildawes/racer.git racer-src
|
||||
git clone --depth 1 --recursive "https://github.com/rust-lang/rust.git" rust
|
||||
git clone --depth 1 --recursive "https://github.com/phildawes/racer.git" racer-src
|
||||
cd racer-src && cargo build --release
|
||||
mv racer-src/target/release/racer ./racer
|
||||
rm -rf racer-src
|
||||
|
||||
csharp:
|
||||
@echo "Installing C# dependencies"
|
||||
git clone --depth 1 --recursive https://github.com/OmniSharp/omnisharp-server omnisharp
|
||||
git clone --depth 1 --recursive "https://github.com/OmniSharp/omnisharp-server" omnisharp
|
||||
cd omnisharp && xbuild
|
||||
mv omnisharp/bin/Debug/OmniSharp.exe ./OmniSharp.exe
|
||||
rm -rf omnisharp
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
;; + TODO peer programming collab
|
||||
|
||||
;; Big-mode settings
|
||||
(defconst big-mode-font (font-spec :family "Inconsolata" :size 18))
|
||||
(defconst big-mode-line-spacing 1)
|
||||
(defconst big-mode-font (font-spec :family "Inconsolata" :size 16))
|
||||
(defconst big-mode-line-spacing 0)
|
||||
(defconst big-mode-modeline-height 35)
|
||||
|
||||
;;
|
||||
|
|
|
@ -15,7 +15,8 @@
|
|||
(defconst write-mode--last-theme doom-current-theme)
|
||||
(defconst write-mode--last-line-spacing line-spacing)
|
||||
|
||||
(spaceline-compile
|
||||
(after! spaceline
|
||||
(spaceline-compile
|
||||
'write
|
||||
'(((*macro-recording *anzu *iedit *evil-substitute *flycheck)
|
||||
:skip-alternate t
|
||||
|
@ -26,7 +27,7 @@
|
|||
*buffer-encoding-abbrev
|
||||
(global :when active)
|
||||
*buffer-position
|
||||
*pad))
|
||||
*pad)))
|
||||
|
||||
;;
|
||||
(defun write-mode|org-hook ()
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
(use-package web-mode
|
||||
:mode ("\\.p?html?$"
|
||||
"\\.\\(tpl\\|blade\\)\\(\\.php\\)?$"
|
||||
"\\.tsx$"
|
||||
"\\.erb$"
|
||||
"\\.jsp$"
|
||||
"\\.as[cp]x$"
|
||||
|
|
|
@ -211,9 +211,6 @@
|
|||
"C-k" 'evil-window-up
|
||||
"C-l" 'evil-window-right
|
||||
"C-w" 'ace-window
|
||||
;; Jump to new splits
|
||||
"s" 'doom/evil-window-split
|
||||
"v" 'doom/evil-window-vsplit
|
||||
;; Swapping windows
|
||||
"H" 'doom/evil-window-move-l
|
||||
"J" 'doom/evil-window-move-d
|
||||
|
@ -303,7 +300,7 @@
|
|||
;; help-mode
|
||||
(:after help-mode
|
||||
(:map help-map
|
||||
"e" 'view-echo-area-messages)
|
||||
"e" 'doom/popup-messages)
|
||||
(:map help-mode-map
|
||||
:n "]]" 'help-go-forward
|
||||
:n "[[" 'help-go-back
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue