From 4ac5bd39ad3a6b2eae75e4137d4dd2b0932b3b2d Mon Sep 17 00:00:00 2001 From: Warwick Date: Wed, 28 Sep 2022 15:23:59 +0100 Subject: [PATCH] Made light line always visible. --- plugins.vim | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins.vim b/plugins.vim index 62f72b9..40d125d 100644 --- a/plugins.vim +++ b/plugins.vim @@ -48,6 +48,11 @@ filetype plugin indent on " required " see :h vundle for more details or wiki for FAQ " Put your non-Plugin stuff after this line +"Always show lightline +set laststatus=2 +set showtabline=2 +set noshowmode + " Gruvbox colours let g:gruvbox_contrast_dark='hard' let g:gruvbox_contrast_light='hard' @@ -67,11 +72,6 @@ inoremap pumvisible() ? "\" : "\" inoremap pumvisible() ? asyncomplete#close_popup() : "\" " clangd vim lsp -let g:lsp_settings = { -\ 'clangd': {'cmd': ['clangd-8']}, -\ 'efm-langserver': {'disabled': v:false} -\} - function! s:on_lsp_buffer_enabled() abort setlocal omnifunc=lsp#complete setlocal signcolumn=yes