summaryrefslogtreecommitdiff
path: root/.config/nvim/init.vim
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/init.vim')
-rw-r--r--.config/nvim/init.vim47
1 files changed, 6 insertions, 41 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
index 64277b9..3589bf3 100644
--- a/.config/nvim/init.vim
+++ b/.config/nvim/init.vim
@@ -1,18 +1,12 @@
"
-" g3tchoo's neovim config
+" getchoo's neovim config
"
" plugins
call plug#begin()
Plug 'itchyny/lightline.vim'
-Plug 'neoclide/coc.nvim', {'branch': 'release'}
-Plug 'sheerun/vim-polyglot'
-Plug 'preservim/nerdtree'
-Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
-Plug 'ryanoasis/vim-devicons'
-Plug 'airblade/vim-gitgutter'
-Plug 'chriskempson/base16-vim'
+Plug 'ayu-theme/ayu-vim'
call plug#end()
@@ -20,42 +14,13 @@ call plug#end()
set tabstop=2
set shiftwidth=2
set expandtab
-set autoindent
set smartindent
-set incsearch
-set termguicolors
-
-" functions
-function! CocCurrentFunction() " for lightline
- return get(b:, 'coc_current_function', '')
-endfunction
-" keybinds
-nnoremap <C-n> :NERDTreeToggle<CR>
-
-" appearance
+" apperance
syntax on
filetype plugin indent on
set termguicolors
-let base16colorspace=256
-colorscheme base16-tomorrow-night
+let ayucolor="mirage"
+colorscheme ayu
let g:lightline = {
- \ 'colorscheme': 'Tomorrow_Night',
- \ 'active': {
- \ 'left': [ [ 'mode', 'paste' ],
- \ [ 'cocstatus', 'currentfunction', 'readonly', 'filename', 'modified' ] ]
- \ },
- \ 'component_function': {
- \ 'cocstatus': 'coc#status',
- \ 'currentfunction': 'CocCurrentFunction'
- \ },
- \ }
-let g:NERDTreeGitStatusWithFlags = 1
-
-" coc config
-let g:coc_global_extensions = [
- \ 'coc-jedi',
- \ 'coc-rls',
- \ 'coc-clangd',
- \ 'coc-java',
- \ ]
+ \ 'colorscheme': 'ayu_mirage'}