add: update config

This commit is contained in:
asep.komarudin 2024-05-31 13:35:27 +07:00
parent 896295d5ec
commit 990f8606e0
3 changed files with 256 additions and 280 deletions

View file

@ -10,6 +10,7 @@
"cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" },
"code_runner.nvim": { "branch": "main", "commit": "6c5bfe44a6c7523350cd706e6b3b8101166eed99" },
"codeium.vim": { "branch": "main", "commit": "289eb724e5d6fab2263e94a1ad6e54afebefafb2" },
"darcula-dark.nvim": { "branch": "main", "commit": "d78f0ca9800f953f1509e275e8de0d2aefb8ccb6" },
"dressing.nvim": { "branch": "master", "commit": "572314728cb1ce012e825fd66331f52c94acac12" },
"friendly-snippets": { "branch": "main", "commit": "d0610077b6129cf9f7f78afbe3a1425d60f6e2f1" },
"gitsigns.nvim": { "branch": "main", "commit": "76927d14d3fbd4ba06ccb5246e79d93b5442c188" },
@ -30,14 +31,13 @@
"nvim-autopairs": { "branch": "master", "commit": "c15de7e7981f1111642e7e53799e1211d4606cb9" },
"nvim-cmp": { "branch": "main", "commit": "5260e5e8ecadaf13e6b82cf867a909f54e15fd07" },
"nvim-colorizer.lua": { "branch": "master", "commit": "85855b38011114929f4058efc97af1059ab3e41d" },
"nvim-juliana": { "branch": "master", "commit": "a5da27b456f440e652e04e25a282800bee2ea1e9" },
"nvim-lspconfig": { "branch": "master", "commit": "0b8165cf95806bc4bb8f745bb0c92021b2ed4b98" },
"nvim-material-icon": { "branch": "main", "commit": "7a8893417c6947925d00946d16b81b56574796a9" },
"nvim-navic": { "branch": "master", "commit": "8649f694d3e76ee10c19255dece6411c29206a54" },
"nvim-notify": { "branch": "master", "commit": "d333b6f167900f6d9d42a59005d82919830626bf" },
"nvim-scrollview": { "branch": "main", "commit": "c29c5f69d37040a1fac88cbea7f5e6f06f0aff4d" },
"nvim-tree.lua": { "branch": "master", "commit": "2bc725a3ebc23f0172fb0ab4d1134b81bcc13812" },
"nvim-treesitter": { "branch": "master", "commit": "5c924407cf110e9da4f3ba02ffed127b4198ad89" },
"nvim-treesitter": { "branch": "master", "commit": "f770df9c8cd56c05b878cdf35115ad872c822bc0" },
"nvim-treesitter-textobjects": { "branch": "master", "commit": "3557e41418b4a6c5b85d5d64abe94c9c50fa9b14" },
"nvim-ts-autotag": { "branch": "main", "commit": "bcf3146864262ef2d3c877beba3e222b5c73780d" },
"nvim-ts-context-commentstring": { "branch": "main", "commit": "cb064386e667def1d241317deed9fd1b38f0dc2e" },

View file

@ -15,7 +15,7 @@
-- solarized-osaka
-- darcula-dark
-- juliana
vim.g.pcode_colorscheme = "juliana"
vim.g.pcode_colorscheme = "darcula-dark"
-- 0 =off 1= on
vim.g.pcode_transparent_mode = 0

View file

@ -1,29 +1,11 @@
local icons = vim.g.pcode_icons
local HEIGHT_RATIO = 0.9 -- You can change this
local WIDTH_RATIO = 0.5 -- You can change this too
return {
-- {
-- "kyazdani42/nvim-tree.lua",
-- lazy = true,
-- event = "VeryLazy",
-- cmd = { "NvimTree", "NvimTreeOpen", "NvimTreeToggle", "NvimTreeFocus", "NvimTreeClose" },
-- -- dependencies = "kyazdani42/nvim-web-devicons",
-- config = function()
-- local data_exists, treeconfig = pcall(require, "core.config")
-- if data_exists then
-- if treeconfig.loadnvimtree_lazy then
-- vim.g.loaded_netrw = 1
-- vim.g.loaded_netrwPlugin = 1
--
-- -- set termguicolors to enable highlight groups
-- vim.opt.termguicolors = true
-- local status_ok, nvim_tree = pcall(require, "nvim-tree")
-- if not status_ok then
-- return
-- end
--
-- local HEIGHT_RATIO = 0.9 -- You can change this
-- local WIDTH_RATIO = 0.5 -- You can change this too
--
-- local icons = require("user.icons")
-- nvim_tree.setup({
-- cmd = { "NvimTreeFindFileToggle","NvimTree", "NvimTreeOpen", "NvimTreeToggle", "NvimTreeFocus", "NvimTreeClose" },
-- opts = {
-- auto_reload_on_write = false,
-- disable_netrw = false,
-- hijack_cursor = false,
@ -47,7 +29,7 @@ return {
-- relativenumber = false,
-- signcolumn = "yes",
-- -- float = {
-- -- enable = true,
-- -- enable = false,
-- -- quit_on_focus_loss = true,
-- -- open_win_config = {
-- -- relative = "editor",
@ -89,8 +71,8 @@ return {
-- highlight_git = true,
-- full_name = false,
-- highlight_opened_files = "none",
-- root_folder_label = ":t",
-- -- root_folder_label = false,
-- -- root_folder_label = ":t",
-- root_folder_label = false,
-- indent_width = 2,
-- indent_markers = {
-- enable = true,
@ -266,14 +248,8 @@ return {
-- cmd = nil,
-- args = {},
-- },
-- })
-- end
-- end
-- -- auto open file if creation
-- local api = require("nvim-tree.api")
-- api.events.subscribe(api.events.Event.FileCreated, function(file)
-- vim.cmd("edit " .. file.fname)
-- end)
-- end,
-- },
-- config = function(_, opts)
-- require("nvim-tree").setup(opts)
-- end,
}