Code Monkey home page Code Monkey logo

dotemacs's Introduction

Emacs dotfiles.

Plugins.

Dependencies.

Installation.

git clone git://github.com/rremizov/dotemacs.git ~/.emacs.d
cd ~/.emacs.d
./pull
./init

Anaconda

pip install -t ~/.emacs.d/bundle/anaconda-mode/ service-factory==0.1.2
pip install -t ~/.emacs.d/bundle/anaconda-mode/ six==1.9.0
pip install -t ~/.emacs.d/bundle/anaconda-mode/ jedi==0.9.0

How to setup and configure Common Lisp environment

using Emacs + SLIME and Steel Bank CL.

Install and configure Emacs

sudo aptitude install emacs
git clone git://github.com/rremizov/dotemacs.git ~/.emacs.d
cd ~/.emacs.d
git submodule init && git submodule update

Install Lisp implementation and library manager

sudo aptitude install sbcl cl-quicklisp

Go into Lisp shell, install and configure quicklisp

sbcl --load /usr/share/cl-quicklisp/quicklisp.lisp
(quicklisp-quickstart:install)
(ql:add-to-init-file)

Go into Lisp shell, load SLIME

sbcl
(ql:quickload "quicklisp-slime-helper")

How to configure Golang environment

wget -O /tmp/golang.tar.gz https://storage.googleapis.com/golang/go1.5.1.linux-386.tar.gz
cd ~
tar xvzf /tmp/golang.tar.gz
mv go goroot
mkdir -p ~/golang/bin
echo "export GOROOT=~/goroot" >> ~/.bashrc
echo "export GOPATH=~/golang" >> ~/.bashrc
echo "export PATH=\$PATH:\$GOROOT/bin:\$GOPATH/bin" >> ~/.bashrc
go get -u github.com/nsf/gocode
go get -u github.com/dougm/goflymake
go get -u github.com/rogpeppe/godef

To remove a submodule you need to:

  1. Delete the relevant section from the .gitmodules file.
  2. Stage the .gitmodules changes git add .gitmodules
  3. Delete the relevant section from .git/config.
  4. Run git rm --cached path_to_submodule (no trailing slash).
  5. Run rm -rf .git/modules/path_to_submodule
  6. Commit git commit -m "Removed submodule <name>"
  7. Delete the now untracked submodule files: rm -rf path_to_submodule

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.