References:
From man page: man apt_preferences
| ;;; sawinlist.el --- functions for listing and manipulating x-windows managed by sawfish | |
| ;; Copyright (C) 2011 , 2012 by the author: John Lumby johnlumby@hotmail.com | |
| ;; This file may be used in conjunction with GNU Emacs. | |
| ;; Both this file and GNU Emacs are free software; you may redistribute them and/or modify | |
| ;; them under the terms of the GNU General Public License as published by | |
| ;; the Free Software Foundation; either version 2, or (at your option) | |
| ;; any later version. |
References:
From man page: man apt_preferences
| #!/bin/sh | |
| # Program to use the command install recursivly in a folder | |
| magic_func() { | |
| echo "entering ${1}" | |
| echo "target $2" | |
| for file in $1; do | |
| if [ -f "$file" ]; then |
| (require 'evil) | |
| (setq evil-move-defun-alist | |
| '((ruby-mode . (ruby-beginning-of-defun . ruby-end-of-defun)) | |
| (c-mode . (c-beginning-of-defun . c-end-of-defun)) | |
| (js2-mode . (js2-beginning-of-defun . js2-end-of-defun)))) | |
| (defun evil-move-defun (count &optional begin-defun end-defun) | |
| "Move by defun" | |
| (let ((count (or count 1)) |
| ;; Simplified variant. Add only current perspective group. | |
| (with-eval-after-load "ibuffer" | |
| (require 'ibuf-ext) | |
| (define-ibuffer-filter persp | |
| "Toggle current view to buffers of current perspective." | |
| (:description "persp-mode" | |
| :reader (persp-prompt (safe-persp-name (get-frame-persp)) t)) |
| #!/usr/bin/env fish | |
| # similar script in Fish | |
| # still under construction, need to quiet `git status` more effectively | |
| function update -d 'Update git repo' | |
| git stash --quiet | |
| git pull | |
| git stash apply --quiet | |
| end |
| # luna_pinyin.custom.yaml | |
| # | |
| # 【朙月拼音】模糊音定製模板 | |
| # 佛振配製 :-) | |
| # | |
| # 位置: | |
| # ~/.config/ibus/rime (Linux) | |
| # ~/Library/Rime (Mac OS) | |
| # %APPDATA%\Rime (Windows) | |
| # |
| ;;; archive-7z.el --- Archive mode extensions for 7z | |
| ;; Author: Masahiro Hayashi <mhayashi1120@gmail.com> | |
| ;; Keywords: | |
| ;; Emacs: GNU Emacs | |
| ;; Package-Requires: () | |
| ;;; Commentary: | |
| ;; |