GithubHelp home page GithubHelp logo

vim's Introduction

vim

My vim dotfiles

Requiremets

  • vifm file manager

Usage

  • Clone in your vim config directory, usually ~/
  • mv vim .vim
  • To bring up vifm type \\
  • You need a repl under your code root to be able to use Fireplace within your vim editor
  • To load and compile:
    • :Requre Will load an compile the document you are editing.
  • To Evaluate code: cpp will evaluate code on any function
  • Editing example: Usually you will get by with this. For more information read Fireplace documentation
    (ns demo.mydoc
    ;; From this code
    ;; Position curson on defn and type Ctl-.-)  Note the dash is just a separator not to be typed. Just type CTL.)
    (defn greet []
      (let [name "John"])
      (println name))
    
    ;; To this code
    (defn greet []
      (let [name "John"]
      (println name)))
    
    
    ;; From this code
    ;; Position cursor on defn and type Ctl-,-) Note the dash is just a separator not to be typed. Just type CTL,)
    (defn greet []
      (let [name "John"]
      (println name)))
    
    ;; To this code
    (defn greet []
      (let [name "John"])
      (println name))
    
    
    ;; To evaluate/compile this code: Position cursor on defn and type cpp
    (defn greet []
      (let [name "John"])
      (println name))
    )
    

Example development environment with vim and Fireplace

  • On the root of your Lein project open vim with a terminal that allows creating tabs ex. xfece4-terminal
  • Open a tab on your terminal pointing to the same code root and start a repl lein repl
  • Once the repl is running you can evaluate code as explained above in Usage

vim's People

Contributors

hectorqlucero avatar

Watchers

 avatar

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.