Small fixes
This commit is contained in:
parent
9324661ac5
commit
82cbc247fa
1 changed files with 13 additions and 9 deletions
10
init.vim
10
init.vim
|
@ -1,8 +1,8 @@
|
|||
call plug#begin()
|
||||
|
||||
" NERDTree stuff
|
||||
Plug 'kyazdani42/nvim-web-devicons' " optional, for file icons
|
||||
Plug 'kyazdani42/nvim-tree.lua'
|
||||
Plug 'nvim-tree/nvim-web-devicons' " optional, for file icons
|
||||
Plug 'nvim-tree/nvim-tree.lua'
|
||||
|
||||
" neovim lsp plugins and depencencies
|
||||
Plug 'neovim/nvim-lspconfig'
|
||||
|
@ -42,6 +42,11 @@ Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
|
|||
|
||||
call plug#end()
|
||||
|
||||
" set termguicolors before lua config,
|
||||
" as it can contain some theme stuff that
|
||||
" checks for termguicolors
|
||||
set termguicolors
|
||||
|
||||
" load main lua file with additional configs
|
||||
lua require("general")
|
||||
|
||||
|
@ -66,7 +71,6 @@ nnoremap <C-g> :CocCommand git.chunkInfo<CR>
|
|||
|
||||
"theme configuration
|
||||
syntax enable
|
||||
set termguicolors
|
||||
let g:onedark_config = {
|
||||
\ 'style': 'darker',
|
||||
\}
|
||||
|
|
Loading…
Reference in a new issue