FuDesign2008 / randomTheme.vim

A plugin for random color schemes and fonts, even on start up!
7 stars 4 forks source link

randomTheme.vim

A plugin for switch color scheme and font, even on start up!

Install & Usage

Before install this plugin, you should install

  1. https://github.com/rafi/awesome-vim-colorschemes
  2. (optional) https://github.com/vim-airline/vim-airline-themes
  3. Some coding Fonts
    • Fonts are put in ./fonts folder, just install the fonts.
    • see ./fonts/readme.md for more

Then,

  1. Install this plugin.
  2. Open vim and execute :RandomTheme to enjoy!

Configuration

g:favorite_color_schemes

By default, the plugin will try to find all the color schemes in runtime path. If want to use your favorite color schemes for random, you can set a list/array to this option in .vimrc. For example:

let g:favorite_color_schemes = ['molokai',
                    \ 'zenburn',
                    \ 'jellybeans',
                    \ 'peaksea']

g:favorite_gui_fonts

The plugin will try to use default setting.

Note: Before using a font, you should install font on system by yourself.


let g:favorite_gui_fonts = [
            \ 'Monaco:h12',
            \ 'Fira\ Code:h12',
            \ 'Cascadia\ Code:h12',
            \ 'Ubuntu\ Mono:h14',
            \ 'Inconsolata:h13',
            \ 'Source\ Code\ Variable:h12',
            \ 'JetBrains\ Mono:h13',
            \ 'Consolas:h13'
            \]

Time of day g:random_theme_day_start / g:random_theme_night_start

By default the plugin will apply the daytime theme from 8 to 19. This can be overridden the following way:

let g:random_theme_day_start = 10
let g:random_theme_night_start = 20

g:random_theme_start

The plugin will use a random color scheme and font when vim starting up by default. If you want to disable this action, you can set the value of g:random_theme_start in .vimrc. For example:


let g:random_theme_start = 0
colo pyte

Available values are here:

Commands

  1. :RandomFont - select a font from g:favorite_gui_fonts
    • :RandomFontZoom <size> - zoom current font with extra size
    • :RandomFontZoomReset - reset current font size, equal to :RandomFontZoom 0
  2. :RandomTheme - select a color scheme from all available schemes and run :RandomFont
    • :RandomTheme select a color scheme
    • :RandomTheme dark select a dark color scheme
    • :RandomTheme light select a light color scheme
    • :RandomTheme auto select a color scheme by day or night
    • :RandomTheme $shemeName select a special color scheme
  3. :RandomThemeFavorite - select a color scheme from the schemes in g:favorite_color_schemes and run :RandomFont
    • :RandomThemeFavorite select a color scheme
    • :RandomThemeFavorite dark select a favorite dark color scheme
    • :RandomThemeFavorite light select a favorite light color scheme
    • :RandomThemeFavorite auto select a favorite color scheme by day or night
    • :RandomThemeFavorite $schemeName select a special favorite color scheme

Change Log