Add a bunch more plugins and configurations

- lualine
- bufferline
- nvim-jdtls
This commit is contained in:
Marko Korhonen 2021-08-08 15:21:10 +03:00
parent dceb69cf01
commit 8adb8243a0
No known key found for this signature in database
GPG key ID: 911B85FBC6003FE5
10 changed files with 239 additions and 158 deletions

View file

@ -5,7 +5,7 @@ local cmd = vim.cmd
------ Appearance ------
-- Set colorscheme
cmd 'colorscheme onedark'
require('onedark').setup()
-- True colors
o.termguicolors = true
@ -19,6 +19,10 @@ o.cmdheight = 1
-- Always show signcolumn
o.signcolumn = 'yes'
-- Blinking cursor
cmd 'set guicursor=i:ver1'
cmd 'set guicursor+=a:blinkon1'
-- Gutter and cursoline bg transparent
cmd 'highlight CursorLineNr guibg=transparent'
cmd 'highlight SignColumn guibg=transparent'