cappuccin theme, tmux changes
This commit is contained in:
parent
fe56f758ce
commit
4e27134c51
8 changed files with 34 additions and 75 deletions
16
lua/plugins/theme_catppuccin.lua
Normal file
16
lua/plugins/theme_catppuccin.lua
Normal file
|
@ -0,0 +1,16 @@
|
|||
return {
|
||||
"catppuccin/nvim",
|
||||
opts = {
|
||||
-- flavour = "frappe", -- latte, frappe, macchiato, mocha (default)
|
||||
-- color_overrides = {
|
||||
-- mocha = {
|
||||
-- -- base = "#0e0e14",
|
||||
-- -- mantle = "#000000",
|
||||
-- -- crust = "#000000",
|
||||
-- },
|
||||
-- },
|
||||
},
|
||||
config = function(_, opts)
|
||||
require("catppuccin").setup(opts)
|
||||
end,
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
return {
|
||||
"tpope/vim-fugitive",
|
||||
}
|
|
@ -1,52 +0,0 @@
|
|||
return {
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim", "nvim-tree/nvim-web-devicons" },
|
||||
cmd = "Neotree",
|
||||
init = function()
|
||||
vim.g.neo_tree_remove_legacy_commands = true
|
||||
end,
|
||||
pin = true,
|
||||
tag = "2.56",
|
||||
opts = {
|
||||
window = {
|
||||
position = "float",
|
||||
},
|
||||
auto_clean_after_session_restore = true,
|
||||
close_if_last_window = true,
|
||||
sources = { "filesystem" },
|
||||
filesystem = {
|
||||
follow_current_file = false,
|
||||
group_empty_dirs = true,
|
||||
filtered_items = {
|
||||
visible = true,
|
||||
hide_dotfiles = false,
|
||||
hide_gitignored = false,
|
||||
never_show = {
|
||||
".DS_Store",
|
||||
},
|
||||
},
|
||||
},
|
||||
use_libuv_file_watcher = true,
|
||||
nesting_rules = {
|
||||
["ts"] = { "cjs", "cjs.map", "d.ts", "d.ts.map", "js", "js.map", "mjs", "mjs.map", "test.ts" },
|
||||
["js"] = { "cjs", "cjs.map", "d.js", "d.js.map", "js", "js.map", "mjs", "mjs.map", "test.js" },
|
||||
["tsx"] = { "d.ts", "d.ts.map", "js", "js.map", "jsx", "jsx.map", "svg" },
|
||||
-- ["tsx"] = { "d.ts", "d.ts.map", "js", "js.map", "jsx", "jsx.map", "module.scss", "svg" },
|
||||
["scss"] = { "css", "css.map" },
|
||||
},
|
||||
},
|
||||
keys = {
|
||||
{ "<leader>e", "<cmd>Neotree toggle<CR>", desc = "Toggle Explorer" },
|
||||
{
|
||||
"<leader>o",
|
||||
function()
|
||||
if vim.bo.filetype == "neo-tree" then
|
||||
vim.cmd.wincmd("p")
|
||||
else
|
||||
vim.cmd.Neotree("reveal")
|
||||
end
|
||||
end,
|
||||
desc = "Toggle Explorer Focus",
|
||||
},
|
||||
},
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
return {
|
||||
"tpope/vim-sleuth",
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue