Add tomorrow theme to janus (macvim)

How to add a theme tomorrow to Janus in MacVim?

https://github.com/chriskempson/tomorrow-theme

What are the steps?

+4
source share
3 answers

You can copy the vim theme folder to the ~/.janus , as described in the Janus wiki page . It would be nice to give the vim folder a more descriptive name, for example. tomorrow-theme .

For example, if you have a local copy (clone) of the tomorrow theme in <path_to_tomorrow_theme> , you can do

 $ cd ~/.janus $ mkdir tomorrow-theme $ cp -R <path_to_tomorrow_theme>/vim/ tomorrow-theme 

Notice the slash / at the end of the vim folder path.

+6
source

Start by reading the documentation . After that, copy the files from github / vim to the ~/.vim .

0
source

I guess there are several ways to do this.

I cd 'ed in:

 .vim/janus/vim/colors 

I created tomorrow-theme folder and cd 'ed:

 .vim/janus/vim/colors/tomorrow-theme 

In the tomorrow-theme folder, I create the colors directory

 .vim/janus/vim/colors/tomorrow-theme/colors 

And this is where I insert the downloaded .vim themes

 Tomorrow-Night-Blue.vim Tomorrow-Night-Bright.vim Tomorrow-Night-Eighties.vim Tomorrow-Night.vim Tomorrow.vim 
-1
source

Source: https://habr.com/ru/post/1432378/


All Articles