added notifications

This commit is contained in:
Wellinton Aracena 2024-03-12 11:52:56 -04:00
parent fede08e7f7
commit e35fd634b4
3 changed files with 55 additions and 39 deletions

View File

@ -170,10 +170,10 @@ vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist, { desc = 'Open diagn
vim.keymap.set('t', '<Esc><Esc>', '<C-\\><C-n>', { desc = 'Exit terminal mode' })
-- TIP: Disable arrow keys in normal mode
-- vim.keymap.set('n', '<left>', '<cmd>echo "Use h to move!!"<CR>')
-- vim.keymap.set('n', '<right>', '<cmd>echo "Use l to move!!"<CR>')
-- vim.keymap.set('n', '<up>', '<cmd>echo "Use k to move!!"<CR>')
-- vim.keymap.set('n', '<down>', '<cmd>echo "Use j to move!!"<CR>')
vim.keymap.set('n', '<left>', '<cmd>echo "Use h to move!!"<CR>')
vim.keymap.set('n', '<right>', '<cmd>echo "Use l to move!!"<CR>')
vim.keymap.set('n', '<up>', '<cmd>echo "Use k to move!!"<CR>')
vim.keymap.set('n', '<down>', '<cmd>echo "Use j to move!!"<CR>')
-- Keybinds to make split navigation easier.
-- Use CTRL+<hjkl> to switch between windows
@ -848,7 +848,6 @@ require('lazy').setup {
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
-- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins`
{ import = 'custom.plugins' },
vim.cmd 'set conceallevel=1',
}
-- The line beneath this is called `modeline`. See `:help modeline`

View File

@ -3,7 +3,14 @@
--
-- See the kickstart.nvim README for more information
--
return {
local config = {
{
vim.cmd 'set conceallevel=1',
},
}
local plugins = {
{
'jubnzv/mdeval.nvim',
event = 'VeryLazy',
@ -29,3 +36,5 @@ return {
end,
},
}
return plugins, config

View File

@ -1,5 +1,13 @@
return {
{ -- Add indentation guides even on blank lines
local normal = {
'lukas-reineke/indent-blankline.nvim',
main = 'ibl',
config = function()
require('ibl').setup()
end,
}
local color = {
-- Add indentation guides even on blank lines
'lukas-reineke/indent-blankline.nvim',
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help ibl`
@ -30,5 +38,5 @@ return {
require('ibl').setup { indent = { highlight = highlight } }
end,
},
}
return color