ayu-theme / ayu-vim

Modern theme for modern VIMs
Apache License 2.0
1.68k stars 187 forks source link

vimrc used in screenshot #22

Closed zeroby0 closed 6 years ago

zeroby0 commented 6 years ago

Hi!

I'm setting up my Vim, could you post the .vimrc used to achieve functionality just as in the screenshot? i.e, The nerd tree plugin and configuration, line numbers, indent lines, etc.

Thanks

dempfi commented 6 years ago

@zeroby0 here is the relevant part of init.vim. I have to note that I used this in neovim and haven't tested in vim.

" Plugins {{
call plug#begin()

Plug 'scrooloose/nerdtree'

" Airline and stuff
Plug 'vim-airline/vim-airline'
Plug 'dempfi/vim-airline-neka'

" git diff on gutter
Plug 'airblade/vim-gitgutter'

" Identation lines
Plug 'Yggdroot/indentLine'
Plug 'ayu-theme/ayu-vim'

call plug#end()
" }}

" NERDTree {{
let NERDTreeMinimalUI = 1
let g:NERDTreeDirArrowExpandable = ''
let g:NERDTreeDirArrowCollapsible = ''
"}}

" CitGutter {{
let g:gitgutter_sign_column_always = 1
set updatetime=250
" }}

" IndentLine {{
let g:indentLine_char = ''
let g:indentLine_first_char = ''
let g:indentLine_showFirstIndentLevel = 1
let g:indentLine_setColors = 0
" }}

" Airline {{
let g:airline#extensions#tabline#enabled = 1
let g:airline_powerline_fonts = 1
let g:airline_theme = 'powerlineish'
set laststatus=2
set ttimeoutlen=50
set noshowmode
let g:airline#extensions#branch#enabled=1
" }}

set fillchars=""
set termguicolors
let ayucolor="mirage"
colorscheme ayu

set foldlevel=20
set linebreak
set wildmenu
set confirm
set visualbell

set number
set showmatch
" set cursorline
thorlucas commented 4 years ago

This seems to be incomplete — I'm still getting the tilde ~ on the unused lines. In the screenshot those are absent.

Additionally, the airline config appears to be extremely different in the screenshot.