Jim Cheung

Wednesday, July 11, 2018

didn't update for a long time, this gonna be a long post.

emacs

found a very good tree layout package: treemacs

however, it requires >=25.2, so I have to build emacs 26.1 under ubuntu:

$ sudo apt-get build-dep emacs24
$ cd emacs-26.1/
$ ./configure
$ make
$ sudo make install


books I read and reading from past few weeks:


noteworthy from tweets:


clojure

Tuesday, July 24, 2018

emacs, I'm swithing from ido to ivy

I was interested in swiper at the beginning, ivy is its dependency. then I found counsel is quite useful as well.

when using counsel-find-file, press m-o will bring up the action menu, can easily set custom action on files

I also set (setq counsel-find-file-at-point t), then in eshell I can move cursor to the file and call counsel-find-file


trying to learn re-frame

for quick setup, use this command to generate basic structure:

lein new re-frame <project-name> +10x +handler
Blog Archive