This commit is contained in:
Alexander Navarro 2023-03-06 19:57:24 -03:00
parent f3c1524c2d
commit 3afa9900ce
9 changed files with 63 additions and 33 deletions

View file

@ -1,5 +1,5 @@
return {
-- ["/nvim-neo-tree/neo-tree.nvim"] = { disable = true },
["/nvim-neo-tree/neo-tree.nvim"] = { disable = true },
["rcarriga/nvim-notify"] = { disable = true },
--
["catppuccin/nvim"] = {
@ -18,11 +18,11 @@ return {
require("user.plugins.project")
end,
},
-- ["kyazdani42/nvim-tree.lua"] = {
-- config = function()
-- require("user.plugins.nvim-tree")
-- end,
-- },
["kyazdani42/nvim-tree.lua"] = {
config = function()
require("user.plugins.nvim-tree")
end,
},
["kylechui/nvim-surround"] = {
tag = "*", -- Use for stability; omit to use `main` branch for the latest features
config = function()

View file

@ -23,6 +23,7 @@ return {
},
window = {
width = 30,
auto_expand_width = true,
mappings = {
["<2-LeftMouse>"] = "open_with_window_picker",
["<cr>"] = "open_with_window_picker",
@ -88,10 +89,10 @@ return {
renderers = {
file = {
{ "icon" },
{ "name", use_git_status_colors = true },
{ "name", use_git_status_colors = true },
{ "harpoon_index" }, --> This is what actually adds the component in where you want it
{ "diagnostics" },
{ "git_status", highlight = "NeoTreeDimText" },
{ "git_status", highlight = "NeoTreeDimText" },
},
},
window = {
@ -129,6 +130,8 @@ return {
if vim.bo.filetype == "neo-tree" then
vim.wo.signcolumn = "auto"
end
vim.cmd("highlight! Cursor blend=100")
end,
},
{

View file

@ -4,6 +4,13 @@ return function(config)
null_ls.builtins.formatting.prettierd.with({
disabled_filetypes = { "markdown" },
}),
null_ls.builtins.formatting.phpcsfixer.with({
extra_args = {
"--config",
"$HOME/.config/php-cs-fixer-conf.php",
},
}),
}
return config
end