Download

Wanderlust

JDEE

navi2ch

  • Navi2ch Project Home Page
  • gzip -dc navi2ch-1.7.2.tar.gz | tar -xvf -
    cd navi2ch-1.7.2
    ./configure EMACS=/cygdrive/c/Meadow/2.00/bin/meadow.exe \
     PREFIX=c:/Meadow LISPDIR=c:/Meadow/site-lisp \
     VERSION_SPECIFIC_LISPDIR=c:/Meadow/2.00/site-lisp
    make install
  • dot.emacs
    (autoload 'navi2ch "navi2ch" "Navigator for 2ch for Emacs" t)

emacs-w3m

  • emacs-w3m
  • ./configure --with-emacs=/cygdrive/c/Meadow/2.00b2/bin/meadow.exe \
       --with-lispdir=c:/Meadow/site-lisp/w3m \
       --with-icondir=c:/Meadow/2.00b2/etc/w3m/icons \
       --prefix=c:/Meadow --infodir=c:/Meadow/2.00b2/info
    make
    make install
  • ./configure
    make
    make install

IRC(irchat)

  • irchat
    wget http://www.ircnet.jp/dist/irchat/irchat-jp26d.tgz
  • tar zxvf irchat.tgz
  • (setq load-path (cons (expand-file-name "~/irchat") load-path))
    (autoload 'irchat "irchat" "Internet Relay Chat" t)
  • M-x irchat 
  • dot.emacs
    (setq irchat-server "irc.2ch.net")
    ;; irchat name
    (setq irchat-name "nuzou")
    (setq irchat-nickname "nuzou")
    ;; auto in channell
    (setq irchat-startup-channel-list '("#<channel name>"))
  • C-c j
    C-c C-p
    C-c q
    C-c w
    C-c n
    C-c C-n
    C-c C-o

pcl-cvs

  • M-x cvs-update
    g
    m
    c
    i
    a

  • (require 'ls-lisp)
    (let (current-load-list)
      (defadvice insert-directory
        (around reset-locale activate compile)
        (let ((system-time-locale "C"))
          ad-do-it)))
  • (if (fboundp 'normal-top-level-add-subdirs-to-load-path)
        (normal-top-level-add-subdirs-to-load-path))
  • M-C-n M-C-p
  • ;; indent
    (setq-default indent-level 4)
    
    (setq-default tab-width 4)
  • (defun my-c-mode-hook ()
      (c-set-style "linux")
      (setq tab-width 4)
      (setq c-basic-offset tab-width))
    (add-hook 'c-mode-hook 'my-c-mode-hook)
  • (setq compilation-window-height 10)
  • (setq compile-command "make -f ")
  • M-x overwrite-mode





トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: Tue, 12 Oct 2021 01:03:01 JST (927d)