this repo has no description
0
fork

Configure Feed

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

nvim: fix notify warnings

+4
+4
vim/astronvim/init.lua
··· 99 99 end 100 100 return config -- return final config table 101 101 end, 102 + notify = function(config) 103 + config.background_colour = "#eee" 104 + end, 102 105 treesitter = { 103 106 ensure_installed = { "lua" }, 104 107 }, ··· 192 195 -- good place to configure mappings and vim options 193 196 polish = function() 194 197 -- Set key bindings 198 + vim.keymap.set("n", ";", ":") 195 199 vim.keymap.set("n", "<C-s>", ":w!<CR>") 196 200 vim.keymap.set("n", "<leader>w/", ":vsp<CR>") 197 201 vim.keymap.set("n", "<leader>w?", ":sp<CR>")