Adding fugitive and changing catpuccin to frappe.
This commit is contained in:
@@ -4,7 +4,7 @@ return {
|
||||
name = "catppuccin",
|
||||
config = function()
|
||||
require("catppuccin").setup({
|
||||
flavour = "macchiato", -- latte, frappe, macchiato, mocha
|
||||
flavour = "frappe", -- latte, frappe, macchiato, mocha
|
||||
background = { -- :h background
|
||||
light = "latte",
|
||||
dark = "mocha",
|
||||
|
||||
3
lua/plugins/fugitive.lua
Normal file
3
lua/plugins/fugitive.lua
Normal file
@@ -0,0 +1,3 @@
|
||||
return {
|
||||
"tpope/vim-fugitive"
|
||||
}
|
||||
@@ -3,7 +3,14 @@ return {
|
||||
'stevearc/oil.nvim',
|
||||
---@module 'oil'
|
||||
---@type oil.SetupOpts
|
||||
opts = {},
|
||||
opts = {
|
||||
view_options = {
|
||||
show_hidden = true,
|
||||
is_always_hidden = function(name, _)
|
||||
return name == "node_modules" or name == ".git"
|
||||
end,
|
||||
},
|
||||
},
|
||||
-- Optional dependencies
|
||||
dependencies = { { "echasnovski/mini.icons", opts = {} } },
|
||||
-- dependencies = { "nvim-tree/nvim-web-devicons" }, -- use if you prefer nvim-web-devicons
|
||||
|
||||
Reference in New Issue
Block a user