this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[nvim] keymaps for nvim-notify

+4 -1
+2
nvim/lua/core/keymaps.lua
··· 34 34 -- keymap("n", "<leader>l", ":lua ", { noremap = true }) 35 35 36 36 keymap("n", "<F2>", ":NvimTreeToggle<CR>", opts) 37 + keymap("n", "-", ":lua require('notify').dismiss()<CR>", opts) 38 + keymap("n", "+", ":Notifications<CR>", opts) 37 39 38 40 -- Keeping search results centered 39 41 keymap("n", "n", "nzzzv", opts)
+2 -1
nvim/lua/core/options.lua
··· 9 9 local options = { 10 10 backup = false, -- creates a backup file 11 11 clipboard = "unnamedplus", -- allows neovim to access the system clipboard 12 - cmdheight = 2, -- more space in the neovim command line for displaying messages 12 + -- cmdheight = 2, -- more space in the neovim command line for displaying messages 13 + cmdheight = 1, 13 14 completeopt = { "menuone", "noselect" }, -- mostly just for cmp 14 15 conceallevel = 0, -- so that `` is visible in markdown files 15 16 fileencoding = "utf-8", -- the encoding written to a file