New statusline
This commit is contained in:
parent
2bcd34a21e
commit
071186a6ea
1 changed files with 18 additions and 3 deletions
21
vim/vimrc
21
vim/vimrc
|
@ -100,8 +100,7 @@ endif
|
||||||
|
|
||||||
Plug 'nvim-treesitter/nvim-treesitter'
|
Plug 'nvim-treesitter/nvim-treesitter'
|
||||||
|
|
||||||
Plug 'vim-airline/vim-airline'
|
Plug 'datwaft/bubbly.nvim'
|
||||||
Plug 'vim-airline/vim-airline-themes'
|
|
||||||
Plug 'morhetz/gruvbox'
|
Plug 'morhetz/gruvbox'
|
||||||
Plug 'arzg/vim-corvine'
|
Plug 'arzg/vim-corvine'
|
||||||
Plug 'tpope/vim-fugitive'
|
Plug 'tpope/vim-fugitive'
|
||||||
|
@ -124,8 +123,24 @@ let g:ctrlp_user_command = 'rg --files %s'
|
||||||
|
|
||||||
set signcolumn=yes
|
set signcolumn=yes
|
||||||
|
|
||||||
" Builtin LSP
|
|
||||||
lua << EOF
|
lua << EOF
|
||||||
|
bubbly_statusline
|
||||||
|
vim.g.bubbly_palette = {
|
||||||
|
background = "#34343c",
|
||||||
|
foreground = "#c5cdd9",
|
||||||
|
black = "#3e4249",
|
||||||
|
red = "#ec5f67",
|
||||||
|
green = "#99c794",
|
||||||
|
yellow = "#fac863",
|
||||||
|
blue = "#6699cc",
|
||||||
|
purple = "#c594c5",
|
||||||
|
cyan = "#62b3b2",
|
||||||
|
white = "#ffffff",
|
||||||
|
lightgrey = "#a7adba",
|
||||||
|
darkgrey = "#65737e",
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Builtin LSP
|
||||||
local lspconfig = require'lspconfig'
|
local lspconfig = require'lspconfig'
|
||||||
lspconfig.ocamlls.setup{}
|
lspconfig.ocamlls.setup{}
|
||||||
lspconfig.pyls.setup{
|
lspconfig.pyls.setup{
|
||||||
|
|
Loading…
Add table
Reference in a new issue