film-noir


Ⅰ. 插件描述

A minimal vim colorscheme, focusing on clarity and simplicity.

Ⅱ. 基本信息

创建日期:  2019-07-12
使用用户:  1
Github星:  3
插件作者:  Judah

Ⅲ. 安装方法

使用Vundle管理器安装

在你的.vimrc下添加:
Plugin 'kyoto-shift/film-noir'
… 然后在Vim中运行以下命令:
:source %
:PluginInstall

对于Vundle版本 < 0.10.2,请用上面的Bundle替换Plugin。

使用NeoBundle管理器安装

在你的.vimrc下添加:
NeoBundle 'kyoto-shift/film-noir'
… 然后在Vim中运行以下命令:
:source %
:NeoBundleInstall

使用VimPlug管理器安装

在你的.vimrc下添加:
Plug 'kyoto-shift/film-noir'
… 然后在Vim中运行以下命令:
:source %
:PlugInstall

使用Pathogen管理器安装

在终端中运行以下命令:
cd ~/.vim/bundle
git clone https://github.com/kyoto-shift/film-noir

Ⅳ. 文档说明

Film Noir

A minimal vim colorscheme, focusing on clarity and simplicity.

Based off of the colorscheme "vim-256noir" by Andreas van Cranenburgh.

Installation

Plug 'kyoto-shift/film-noir'
" ...
let g:film_noir_color='red' " also: 'green', 'blue' (default)
colorscheme film_noir

" Change highlighting of cursor line when entering/leaving Insert Mode
set cursorline
highlight CursorLine cterm=NONE ctermfg=NONE ctermbg=233 guifg=NONE guibg=#121212
autocmd InsertEnter * highlight CursorLine cterm=NONE ctermfg=NONE ctermbg=234 guifg=NONE guibg=#1c1c1c
autocmd InsertLeave * highlight CursorLine cterm=NONE ctermfg=NONE ctermbg=233 guifg=NONE guibg=#121212

Screenshots

Font in screenshots is Source Code Pro at h13

let g:film_noir_color='red'

let g:film_noir_color='green'

let g:film_noir_color='blue'

License

GNU General Public License v2.0

添加新评论