Skip to content

Instantly share code, notes, and snippets.

@TerryTsao
TerryTsao / .emacs
Created April 30, 2020 09:37 — forked from redguardtoo/.emacs
minimum emacs setup for Emacs plugin testing
;; A minimum .emacs to test Emacs plugins
(show-paren-mode 1)
(eval-when-compile (require 'cl))
;; test elisps download from internet here
(setq test-elisp-dir "~/test-elisp/")
(unless (file-exists-p (expand-file-name test-elisp-dir))
(make-directory (expand-file-name test-elisp-dir)))
(setq load-path
@TerryTsao
TerryTsao / gist:b85079bcb6c44fd635f999b1bb6857ab
Created February 21, 2018 01:43 — forked from lanrion/gist:9826458
ubuntu上安装 五笔输入法

基于 IBus 框架

 1、安裝IBus框架:

  在终端中输入:

         sudo apt-get install ibus ibus-clutter ibus-gtk ibus-gtk3 ibus-qt4

  有些版本自带了此输入法框架,则不需要安装。
//
// Trie.cpp
// ZacTrie
//
// Created by Zac Holland on 3/8/16.
// Copyright © 2016 Diericx. All rights reserved.
//
#include "Trie.hpp"