nvim: fancify ui interfaces and notifications
This commit is contained in:
parent
d1e690de4a
commit
479a902aeb
|
@ -124,6 +124,11 @@ require('packer').startup({ function(use)
|
|||
'https://github.com/dhruvasagar/vim-table-mode',
|
||||
tag = '*'
|
||||
}
|
||||
use { 'https://github.com/stevearc/dressing.nvim' }
|
||||
use {
|
||||
'https://github.com/rcarriga/nvim-notify',
|
||||
tag = '*'
|
||||
}
|
||||
|
||||
-- coding
|
||||
use {
|
||||
|
|
|
@ -46,6 +46,7 @@ map('n', '<Leader>tp', telescope.extensions.projects.projects, 'Projects')
|
|||
map('n', '<Leader>tt',
|
||||
require("telescope._extensions.todo-comments").exports.todo,
|
||||
'Display TODO comments in project')
|
||||
map('n', '<Leader>tn', telescope.extensions.notify.notify, 'Notifications')
|
||||
|
||||
local nerdfont_installed = require('my.functions').nerdfont_installed()
|
||||
|
||||
|
@ -123,3 +124,6 @@ map('n', '<F21>', mind.open_project, 'Open project mind') -- <S-F9> = <F21>
|
|||
require('nvim-surround').setup({})
|
||||
|
||||
vim.g.table_mode_map_prefix = nil -- disable keymaps
|
||||
|
||||
require('dressing').setup({})
|
||||
vim.notify = require('notify')
|
||||
|
|
Loading…
Reference in New Issue
Block a user