mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 19:30:01 +02:00
big nvim update. maybe broke something
This commit is contained in:
parent
1e68462bc1
commit
8a39a1b88a
32 changed files with 531 additions and 195 deletions
|
|
@ -10,7 +10,7 @@ set.showmode = false -- disable mode in the command line, because i use lualine
|
|||
--
|
||||
-- Editor settings
|
||||
--
|
||||
|
||||
set.pumheight = 20
|
||||
set.hlsearch = false
|
||||
set.incsearch = true
|
||||
set.laststatus = 3
|
||||
|
|
@ -38,3 +38,10 @@ vim.filetype.add({
|
|||
},
|
||||
})
|
||||
|
||||
-- Sign configuration
|
||||
local icons = require('config.icons').diagnostics
|
||||
vim.fn.sign_define('DiagnosticSignError', { text = icons.error, texthl = 'DiagnosticSignError' })
|
||||
vim.fn.sign_define('DiagnosticSignWarn', { text = icons.warn, texthl = 'DiagnosticSignWarn' })
|
||||
vim.fn.sign_define('DiagnosticSignInfo', { text = icons.info, texthl = 'DiagnosticSignInfo' })
|
||||
vim.fn.sign_define('DiagnosticSignHint', { text = icons.hint, texthl = 'DiagnosticSignHint' })
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue