summaryrefslogtreecommitdiff
path: root/.config/nvim/init.vim
blob: 3589bf37018ba77e8042648481e0cd0e5b506f31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"
" getchoo's neovim config
"

" plugins
call plug#begin()

Plug 'itchyny/lightline.vim'
Plug 'ayu-theme/ayu-vim'

call plug#end()

" options
set tabstop=2
set shiftwidth=2
set expandtab
set smartindent

" apperance
syntax on
filetype plugin indent on
set termguicolors
let ayucolor="mirage"
colorscheme ayu
let g:lightline = {
      \ 'colorscheme': 'ayu_mirage'}