style: config neovim visual

- everforest theme
- git blame inline
pull/99/head
fm39hz-workstation 2024-05-13 12:49:19 +07:00 committed by fm39hz-laptop
parent 0348db0e37
commit d525cf77e6
4 changed files with 28 additions and 0 deletions

View File

@ -18,8 +18,10 @@
"dial.nvim": { "branch": "master", "commit": "27eb570085db2ef44bff4f620d3806039184651c" },
"dressing.nvim": { "branch": "master", "commit": "5162edb1442a729a885c45455a07e9a89058be2f" },
"edgy.nvim": { "branch": "main", "commit": "de79b7d92a5979cd71a9a1d8b6282515345e5055" },
"everforest-nvim": { "branch": "main", "commit": "5e0e32a569fb464911342f0d421721cc1c94cf25" },
"flit.nvim": { "branch": "main", "commit": "56490317983218b09698f8c960c3669958b12b32" },
"friendly-snippets": { "branch": "main", "commit": "3e9a3f5a0cfcef1741e352c37bda4e82e5eb846a" },
"git-blame.nvim": { "branch": "master", "commit": "fb84fad97cd4b51caee3c865e8a33a0d413b77a8" },
"harpoon": { "branch": "harpoon2", "commit": "0378a6c428a0bed6a2781d459d7943843f374bce" },
"headlines.nvim": { "branch": "master", "commit": "618ef1b2502c565c82254ef7d5b04402194d9ce3" },
"indent-blankline.nvim": { "branch": "master", "commit": "3d08501caef2329aba5121b753e903904088f7e6" },

View File

@ -12,3 +12,6 @@ map("n", "<leader>op", "<CMD>Oil<CR>", { desc = "Open parent directory" })
-- Markdown configs
map("n", "<leader>ct", ":lua require('toggle-checkbox').toggle()<CR>", { desc = "Toggle Checkbox" })
-- Git configs
map("n", "<leader>gb", "<CMD>GitBlameToggle<CR>", { desc = "Toggle Git Blame" })

View File

@ -0,0 +1,19 @@
return {
{
"neanias/everforest-nvim",
opts = {
priority = 1000,
},
config = function()
require("everforest").setup({
-- background = "soft",
})
end,
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "everforest",
},
},
}

View File

@ -0,0 +1,4 @@
return {
"f-person/git-blame.nvim",
opts = {},
}