Mac OS X 配置指南

Mac OS X 配置指南

  • Docs
  • Blog

›编程工具

目录

  • 介绍

系统偏好设置

  • 系统偏好设置
  • 开机启动项的管理

软件安装以及下载

  • Aria2 - 下载神器
  • Homebrew

后端相关工具

  • Docker

编程工具

  • Visual Studio Code
  • Xcode
  • Emacs
  • iTerm2
  • vim

    • 安装和配置
    • emmet-vim
    • NEOVIM

    Git 和 Github 的配置

    • Git
    • 常用 .gitignore

编程语言相关环境

  • Python
  • Ruby
  • Node.js

科研

  • LaTeX
  • Shadowsocks
  • V2ray 指南

娱乐

  • MPV
  • Chrome

其他

  • 其它常用软件

附录

  • 附:疑难杂症等
  • Bibliography

Emacs

安装 | Install

Mac 下面的 emcas 还是有很多不同的版本的,选择使用 GNU Emacs 就好了。

配置 | Settings

emacs 有一个恼人的特性,就是会生成一些含#号的备份文件(不同于类似于 .swp 这样的临时文件,这些备份文件是会一直存在的),如过你觉得这很恼人,请关闭这个功能。

Flyspell

Flyspell 需要 ispell 才能正常使用。

$ brew install ispell

Spacemacs

Emacs 推荐使用 spacemacs 作为基础配置。Spacemacs 整个项目还是很不错的,理念简单,一致性高,功能也不弱,项目借鉴了很多 vim 的东西,spcaemacs 巧妙的结合了二者的优点。对于一个 vimer 来说,是使用 Emacs 的不二选择。

TIPS: 关于 spacemacs 的具体使用,可以查看相关的 文档 (Documentation)。

OS X Layer

TIPS: spacemacs 把里面的配置文件都按层(Layer)组织起来,使得里面的配置文件都非常的有层次。

如果要启用这个层,就需要把 osx 加到 ~/.spacemacs. 里面的 dotspacemacs-configuration-layers 下面。

这个层最主要的好处就是可以直接使用系统默认的复制和粘贴键。这样子,系统,Vim 和 Emacs 里面的按键就完全统一了。而官网上的说明是:

Spacemacs is not just emacs+vim. It can have OSX keybindings too! This layer globally defines common OSX keybindings. ⌘ is set to super and ⌥ is set to meta. Aside from that, there’s nothing much, really.

While this layer enables common OSX bindings, it does not implement OSX navigation keybindings. Spacemacs is meant to be used with evil, and we encourage you to do so :)

另外,说明中也有提到最好用gls取代ls,所以需要安装

brew install coreutils

FYI:*我自己的一些特殊配置如下。

  • orgmode-mediawiki
(setq dotspacemacs-additional-packages '(ox-mediawiki))
  (add-to-list 'load-path "~/.emacs.d/custom/orgmode-mediawiki")
  (require 'ox-mediawiki)
  (add-to-list 'load-path "~/.emacs.d/private/local") 
  (require 'html-fold)
  (with-eval-after-load 'smartparens
    (show-smartparens-global-mode -1))
  • mobile-org
  (setq org-mobile-directory "~/Dropbox/Apps/MobileOrg")
  • 自己用的截图函数
(defun my-org-screenshot ()
    "Take a screenshot into a time stamped unique-named file in the
same directory as the org-buffer and insert a link to this file."
    (interactive)
    ;(org-display-inline-images)
    (setq filename
          (concat
           (make-temp-name
            (concat (file-name-nondirectory (buffer-file-name))
                    "_imgs/"
                    (format-time-string "%Y%m%d_%H%M%S_")) ) ".png"))
    (unless (file-exists-p (file-name-directory filename))
      (make-directory (file-name-directory filename)))
                                        ; take screenshot
    (if (eq system-type 'darwin)
        (call-process "screencapture" nil nil nil "-i" filename))
    (if (eq system-type 'gnu/linux)
        (call-process "import" nil nil nil filename))
                                        ; insert into file if correctly taken
    (if (file-exists-p filename)
        (insert (concat "[[./" filename "]]"))
    )
  )
  • org-capture的配置
(setq org-capture-templates '(
                              ("t" "Task" entry (file+headline "~/Dropbox/GTD/inbox.org" "Tasks")
                               "** TODO %?\n  %i\n  %a")
                              ("b" "Book" entry (file+headline "~/Dropbox/GTD/books.org" "Books")
                               "** TODO %?\n  %i\n  %a")
                              ("s" "Someday" entry (file+headline "~/Dropbox/GTD/somedays.org" "Somedays")
                               "* %?\nEntered on %U\n  %i\n  %a")
                              ("w" "Work" entry (file+headline "~/Dropbox/GTD/works.org" "Works")
                               "** TODO %?\n  %i\n  %a")
                              ("j" "Journal" entry (file+datetree "~/org/journal.org")
                               "* %?\nEntered on %U\n  %i\n  %a")
                              ("n" "Note" entry (file+datetree "~/org/notes.org")
                               "* %?\nEntered on %U\n  %i\n  %a")
                              ))
  • flyspell 中键的切换
(eval-after-load "flyspell"
    '(progn
       (define-key flyspell-mouse-map [down-mouse-3] #'flyspell-correct-word)
       (define-key flyspell-mouse-map [mouse-3] #'undefined)
       (define-key flyspell-mouse-map [down-mouse-2] nil)
       (define-key flyspell-mouse-map [mouse-2] nil))) 
)
  • 显示代码行数
(global-linum-mode) ; Show line numbers by default

References

  1. Spacemacs with Python layer
  2. Fullstack Python - Emacs
Last updated on 2019-1-8 by wild-flame
← XcodeiTerm2 →
  • 安装 | Install
  • 配置 | Settings
    • Flyspell
    • Spacemacs
  • References
Docs
Mac OS 配置指南 | Mac OS Setup Guide乱七八糟的笔记
Projects
Leetcode solutionsJekyll simple猪瘟疫情可视化
More
BlogGitHub
Copyright © 2019 wild-flame