Changed kitty conf for latest kitty, added deoplete
This commit is contained in:
parent
81b172c167
commit
65737270d2
2 changed files with 6 additions and 0 deletions
|
@ -30,6 +30,8 @@ font_size 18.0
|
|||
# the font size in a running terminal.
|
||||
# font_size_delta 2
|
||||
|
||||
tab_bar_style separator
|
||||
tab_separator " |"
|
||||
|
||||
# Adjust the cell dimensions.
|
||||
# You can use either numbers, which are interpreted as pixels or percentages
|
||||
|
|
|
@ -18,6 +18,7 @@ endif
|
|||
|
||||
call plug#begin('~/.config/nvim/plugged')
|
||||
|
||||
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
||||
Plug 'machakann/vim-highlightedyank'
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'vim-airline/vim-airline-themes'
|
||||
|
@ -25,6 +26,7 @@ Plug 'ctrlpvim/ctrlp.vim'
|
|||
Plug 'morhetz/gruvbox'
|
||||
Plug 'tpope/vim-fugitive'
|
||||
Plug 'mhinz/vim-signify'
|
||||
Plug 'tpope/vim-commentary'
|
||||
|
||||
call plug#end()
|
||||
|
||||
|
@ -49,3 +51,5 @@ if executable('rg')
|
|||
let g:ctrlp_switch_buffer = 'et'
|
||||
endif
|
||||
|
||||
"Deoplete
|
||||
let g:deoplete#enable_at_startup = 1
|
||||
|
|
Loading…
Add table
Reference in a new issue