Skip to content
Matthew Harris edited this page Jan 26, 2017 · 1 revision
Now that you have MacVim with Janus we are ready to start documenting your internship. I will layout a simple structure, but feel free to organize your wiki how ever you like. The goal is to make a note of what you did everyday, something simple and short.
November 9, 2016

* Kitware Meetings
* Jane Doe interview
* failed esgf stack install
  1. To start on gitHub create a new repo named vimwiki and initialize with a README.md

  2. Clone this new repo

     cd
     git clone [email protected]:USERNAME/vimwiki.git
    
  3. Start your wiki

  • Open MacVim [command-space]

  • Open the wiki index page, from command mode press \ww

  • This is where you can organize how you want, just remember file names links must be unique. When making tables rows vimwiki will auto correct there size once your at the end of the row and press enter to the next line.

        ## YEAR
    
        | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec | 
        | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
        |     |     |     |     |     |     |     |     |     |     |     |     |
    
  • Create a daily entry (remember file names must be unique.)

       ## YEAR
    
       | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec | 
       | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
       | 126 |     |     |     |     |     |     |     |     |     |     |     |
    
* In command mode put the cursor on the 1 of `126` and press enter, this will open a create a link to a new page and turn `123` blue. Press enter again to go to that page.

* Add the days entry

        January 26, YEAR

        * Created my vimwiki repo 
        * Meet with Mentor
        * Googled vimwiki
        __eof has a empty line__

* From command mode you can press `Backspace` to go back a page in vimwiki
  1. Commit changes

        cd ~/vimwiki
        git status
        git add index 126
        git commit -am "this.DAYOFWEEK"
        git push