Spacemacs学习

Useful keybinding

Buffer and window

  • SPC f s Save a buffer
  • SPC f S Save all opened buffers
  • SPC f f Open the buffer in now directory
  • SPC f r Open the buffer and search in recently files
  • SPC b b Open or switch a buffer with helm
  • SPC b d Delete a buffer
  • SPC b K Delete other buffer but this
  • SPC w v/s split v or s
  • SPC h/l/j/k switch window

使用Org-mode做时间管理

写在前面

  • 最近准备学习 R 和 Python 语言,比较了很多编辑器,最终选择了 Emacs,看到知乎上很多大神推荐 Spacemacs,准备用 Spacemacs 编写程序, 同时建立博客,记录学习过程。
  • 首先接触了 Org-mode,用 org-mode 做时间管理,本文简述我用 org-mode 做时间管理的流程以及配置。
  • 在用 org-mode 之前,应该有一些 Spacemacs 及 Org-mode 的使用经验(参见pacemacs KeybindingOrg Mode Manual)。

博客迁移杂记-从 Hexo 到 Nikola

迁移原因

16 年年初,开始搭建自己的个人博客,一不小心入了 spacemacs 的坑,一直用 Org-mode 写作、记笔记等,因此博客必须支持 Org-mode ,最开始的解决方案是 Hexo,用 hexo-renderer-org 将 Org-mde 格式转化,使用 Next 主题,确实比较好看,当时配置博客站点花了很长时间,在使用过程中,总是会有 hexo 插件更新问题,导致博客不能发布等,因此,最近一个月寻找 hexo 的替代者。

Nikola 是用 Python 写的,恰好以后要学 Python,同时 Nikola 通过 Org-mode 插件支持 Org-mode,于是选择 Nikola 作为博客框架,目前一切还好,就是主题比较难看。博客迁移过程用,参考1, 2, 3, 4

使用Org-mode做幻灯片

缘由:

  • 之前做幻灯一直用 powerpoint,受限于各种格式调整,之后接触到了 latex,开始用 beamer 做幻灯
  • 最近迷恋上了 Reproducible Research,用 org-mode 进行时间管理、写 blog,恰巧最近需要做幻灯,本文记录用 org-mode 进行写做幻灯的过程以及注意事项,本文示例见org-beamer

博客迁移杂记-从Nikola到Hugo

迁移原因

继上一次将博客迁移到Nikola之后,发现博客主题偏少,博客更新比较麻烦,之后寻找替代这,看到ox-hugo之后,发现这是我以后的终极博客了,可以全文或者org标题发布博客;

Gentoo系统-系统安装篇

写在前面

细细算来, 使用 linux 已经 7,8 年了, 从最早的 ubuntu, deepin 开始, 到最后的 archlinux, 算是打造了自己的系统. 但是 ubuntu, deepin 可定制性比较差, archlinux 更新大量包时容易挂掉, 都不算是心目中最理想的系统.

Gentoo系统-软件安装配置篇

在/etc/portage/package.use下建立 lengyue_use 加入下面标记

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
>=app-text/texlive-2017 cjk png truetype xml context detex dvi2tty epspdf extra games graphics humanities jadetex luatex metapost music pdfannotextractor pstricks publishers science tex4ht texi2html xetex xindy zh en
>=x11-misc/xmobar-0.24 xft
>app-editors/emacs-25 xft xwidgets imagemagick sound gconf gsettings
>=media-libs/libsdl2-2.0.8-r2 gles
media-video/vlc gnutls live lua matroska rtsp theora upnp vcdx voribs vpx qt5
>=x11-misc/rofi-1.5.1 test windowmode
>=net-fs/samba-4.5.16 client
net-mail/mu emacs
app-misc/tmux vim-syntax
x11-drivers/nvidia-drivers compat
dev-lang/php gd
media-fonts/source-han-sans l10n_zh-CN l10n_zh-HK l10n_zh-TW

Lengyueyang's Emacs configuration

1
2
3
4
;;; ------------------------------------------
;;; Do not edit this file. It was tangled from
;;; an org file.
;;; ------------------------------------------

1 Introduction: Emacs Configuration in an Org File

I used spacemacs recently, org-mode is my favourite package of emacs, I use org-mode to GTD, write slide and documents, so I want to use org-mode to manager may own configuration of emacs beyond spacemacs.

After searched in google and with my research, I found the way below, I want to manager my own emacs configuration from now ([2016-11-07 Mon 21:00]).

You could found my org config file in https://github.com/lengyueyang/spacemacs-lengyue

用Org-mode, hexo在github搭建博客

写在前面

  • 长久以来,一直想建立自己的博客,今年开始学习 Emacs,偶遇几位大神用 Hexo 建立博客,于是也动手搭建自己的博客,记录学习过程,记录向数据科学转型学习点滴
  • 本文简述用 Org-mode 写博客,通过 Hexo 搭建博客的过程,我的博客见深度识医

Archlinux安装与配置

Archlinux install

Prepare for the installation

  • Prepare the ISO of archlinux, and brasero it into USB flash disk

  • Partiton: use cfdisk, use the UEFI install, the mkfs

1
2
3
4
/dev/sda1 to UEFI boot: ef00, 1G
/dev/sda2 to 119G
mkfs.fat -F32 /dev/sda1
mkfs.ext4 /dev/sda2