Add vim-airline bar plugin, and nvim-treesitter
This commit is contained in:
parent
6876de02c9
commit
fb6a79d3c1
1 changed files with 5 additions and 1 deletions
6
init.vim
6
init.vim
|
@ -13,11 +13,14 @@ Plug 'rmagatti/auto-session'
|
||||||
Plug 'tpope/vim-fugitive'
|
Plug 'tpope/vim-fugitive'
|
||||||
Plug 'Glench/Vim-Jinja2-Syntax'
|
Plug 'Glench/Vim-Jinja2-Syntax'
|
||||||
Plug 'vmware-archive/salt-vim'
|
Plug 'vmware-archive/salt-vim'
|
||||||
|
Plug 'vim-airline/vim-airline'
|
||||||
|
Plug 'vim-airline/vim-airline-themes'
|
||||||
|
|
||||||
"Fuzzy search by Telescope and its dependencies:
|
"Fuzzy search by Telescope and its dependencies:
|
||||||
Plug 'nvim-lua/plenary.nvim'
|
Plug 'nvim-lua/plenary.nvim'
|
||||||
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.0' }
|
Plug 'nvim-telescope/telescope.nvim', { 'branch': '0.1.x' }
|
||||||
Plug 'BurntSushi/ripgrep'
|
Plug 'BurntSushi/ripgrep'
|
||||||
|
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
@ -45,6 +48,7 @@ nnoremap <C-s> :CocCommand git.chunkInfo<CR>
|
||||||
"plugin configuration
|
"plugin configuration
|
||||||
syntax enable
|
syntax enable
|
||||||
colorscheme dracula
|
colorscheme dracula
|
||||||
|
let g:airline_theme='dark'
|
||||||
|
|
||||||
set splitright
|
set splitright
|
||||||
set splitbelow
|
set splitbelow
|
||||||
|
|
Loading…
Reference in a new issue