Giter VIP home page Giter VIP logo

dotfiles's Introduction

dotfiles

My settings for Vim, Emacs etc.

Overview

I use these settings in Mac OS and Linux everyday, so it should have no problem with those two systems.

The main feature of the settings is the consistent user experience across Emacs and Vim. I used Vim for several years then changed to Emacs with a migration of my previous Vim configs. So the themes and shortcuts of Vim and Emacs are very similar, but I no longer actively configure my Vim settings.

You should use those files as a reference or a start point for your own config files. It's not a good idea to sync those configs, you should modifiy and write your own configs as soon as possible. Because things are changing constantly, even if there exists the most efficient config now, it will not be the most efficient config forever, the most efficient config for you is the config you write yourself and the one you can modify quickly.

Emacs

emacs screenshot

Prerequisite

If you are not familiar with Vim's shortcuts, I recommend you taking vim's built-in tutorial or Evil Adventures to familiar those shortcuts. You should also have some basic Elisp knowledge and don't hesitate to check Elisp reference when you encounter any strange thing.

The theme use a font which may not exist on your system, make sure you have Source Code Pro installed.

Usage

mkdir -p ~/projects/emacs/themes
cd ~/projects/emacs/themes
curl -O https://raw.githubusercontent.com/d8660091/dotfiles/master/projects/emacs/themes/jellybeans-theme.el
cd ~/
mv ~/.emacs.el ~/.emacs.el.old
curl -O https://raw.githubusercontent.com/d8660091/dotfiles/master/.emacs.el

Supported Languages:

Emacs natively support many languages, but the following languages are supported with extra configurations.

  • Elisp
  • JavaScript
  • TypeScript
  • PHP
  • Python
  • Go
  • Miscellaneous Web Languages (CSS/SCSS, HTML/Jinja2, ...)
  • Latex
  • Clojure
  • Haskell

packages

  • ace-link
  • ag
  • anzu
  • avy
  • cider
  • clojure-mode
  • company
  • company-dabbrev
  • company-jedi
  • css-mode
  • diminish
  • dired+
  • editorconfig
  • elpy
  • emmet-mode
  • eshell
  • evil
  • evil-leader
  • evil-mc
  • evil-nerd-commenter
  • evil-numbers
  • evil-surround
  • exec-path-from-shell
  • flycheck
  • fringe
  • fringe-helper
  • git-gutter-fringe
  • go-eldoc
  • go-mode
  • haskell-mode
  • helm
  • helm-ag
  • helm-dash
  • helm-projectile
  • info
  • ivy
  • js2-mode
  • key-chord
  • linum
  • magit
  • markdown-mode
  • org
  • paredit
  • php-mode
  • projectile
  • rainbow-mode
  • restclient
  • spaceline-config
  • tide
  • web-mode
  • wgrep
  • which-key
  • yasnippet

Keymaps

(define-key company-active-map      "<tab>"    'company-complete-selection)
(define-key company-active-map      "C-n"      'company-select-next)
(define-key company-active-map      "C-p"      'company-select-previous))
(define-key emmet-mode-keymap       "C-y n"    'emmet-next-edit-point)
(define-key evil-insert-state-map   "\C-h"     'left-char)
(define-key evil-insert-state-map   "\C-l"     'right-char)
(define-key evil-insert-state-map   "\C-n"     'nil)
(define-key evil-insert-state-map   "\C-y"     'nil)
(define-key evil-motion-state-map   "\C-y"     'nil))
(define-key evil-normal-state-map   "\C-c\C-h" 'paredit-splice-sexp-killing-backward)
(define-key evil-normal-state-map   "\C-c\C-l" 'paredit-splice-sexp-killing-forward)
(define-key evil-normal-state-map   "\M-d"     'evil-scroll-up)
(define-key evil-normal-state-map   ", e"      'eval-last-sexp)
(define-key evil-normal-state-map   ", g d"    'elpy-goto-definition))
(define-key evil-normal-state-map   ", g d"    'tide-jump-to-definition)
(define-key evil-normal-state-map   ", g r"    'tide-references)
(define-key evil-normal-state-map   ", w"      'save-buffer)
(define-key evil-normal-state-map   "C-c +"    'evil-numbers/inc-at-pt)
(define-key evil-normal-state-map   "C-c -"    'evil-numbers/dec-at-pt))
(define-key evil-normal-state-map   "Q"        'kill-this-buffer)
(define-key evil-normal-state-map   "SPC a g"  'helm-projectile-ag)
(define-key evil-normal-state-map   "SPC b"    'helm-buffers-list)
(define-key evil-normal-state-map   "SPC d"    'helm-projectile-find-dir)
(define-key evil-normal-state-map   "SPC f"    'helm-projectile)
(define-key evil-normal-state-map   "SPC i"    'helm-imenu)
(define-key evil-normal-state-map   "SPC p"    'helm-projectile-switch-project)
(define-key evil-normal-state-map   "SPC r"    'helm-recentf)
(define-key evil-normal-state-map   "[ b"      'magit-blob-previous)
(define-key evil-normal-state-map   "[ c"      'git-gutter:previous-hunk)
(define-key evil-normal-state-map   "[ q"      'previous-error)
(define-key evil-normal-state-map   "] b"      'magit-blob-next)
(define-key evil-normal-state-map   "] c"      'git-gutter:next-hunk)
(define-key evil-normal-state-map   "] f"      'projectile-find-other-file)
(define-key evil-normal-state-map   "] q"      'next-error)
(define-key evil-normal-state-map   "s"        'avy-goto-word-or-subword-1))
(define-key yas-minor-mode-map      "<C-tab>"  'yas-expand)
(define-key yas-minor-mode-map      "<tab>"    nil)
(define-key yas-minor-mode-map      "TAB"      nil)

(evil-leader/set-key
  ;; leader key is ','
  "."  'evilnc-copy-and-comment-operator
  "\\" 'evilnc-comment-operator))
  "cc" 'evilnc-copy-and-comment-lines
  "ci" 'evilnc-comment-or-uncomment-lines
  "cl" 'evilnc-quick-comment-or-uncomment-to-the-line
  "cp" 'evilnc-comment-or-uncomment-paragraphs
  "cr" 'comment-or-uncomment-region
  "cv" 'evilnc-toggle-invert-comment-line-by-line
  "ll" 'evilnc-quick-comment-or-uncomment-to-the-line

Vim

vim screenshot

packages

  • rizzatti/dash.vim
  • ap/vim-css-color
  • hail2u/vim-css3-syntax
  • airblade/vim-gitgutter
  • cakebaker/scss-syntax.vim
  • easymotion/vim-easymotion
  • editorconfig/editorconfig-vim
  • elmcast/elm-vim
  • godlygeek/tabular
  • itchyny/vim-haskell-indent
  • junegunn/fzf
  • junegunn/fzf.vim
  • junegunn/gv.vim
  • leafgarland/typescript-vim
  • mattn/emmet-vim
  • mbbill/undotree
  • othree/html5.vim
  • pangloss/vim-javascript
  • terryma/vim-multiple-cursors
  • tmhedberg/matchit
  • tpope/vim-fugitive
  • gregsexton/gitv
  • tpope/vim-repeat
  • tpope/vim-surround
  • tpope/vim-unimpaired
  • ~/projects/vim-color
  • ~/projects/vim-php
  • ~/projects/vim-twig
  • ~/projects/vim-vue
  • junegunn/vim-easy-align
  • SirVer/ultisnips
  • majutsushi/tagbar
  • scrooloose/nerdtree
  • plasticboy/vim-markdown
  • mileszs/ack.vim
  • mxw/vim-jsx
  • mhinz/vim-startify
  • scrooloose/nerdcommenter
  • coot/atp_vim
  • ervandew/supertab
  • neomake/neomake

Keymaps

Similar to the keymaps of Emacs.

dotfiles's People

Contributors

d8660091 avatar

Stargazers

Weijia Wen avatar  avatar Zhuoqin avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.