Compare commits

...

2 Commits

Author SHA1 Message Date
siduck 3dd0fa6c5b temporarily change folder icon
old folder icon was removed from octicons and nerdfonts uses latest octicons
2023-05-04 07:34:27 +05:30
siduck 03f93e5d75 update icons to nerdfont icons 3.0x 2023-05-03 13:49:50 +05:30
6 changed files with 7 additions and 44 deletions

View File

@ -5,7 +5,7 @@ return {
ui = {
icons = {
ft = "",
lazy = " ",
lazy = "󰂠 ",
loaded = "",
not_loaded = "",
},

View File

@ -6,8 +6,8 @@ local options = {
ui = {
icons = {
package_pending = "",
package_installed = " ",
package_uninstalled = " ",
package_installed = "󰄳 ",
package_uninstalled = " 󰚌",
},
keymaps = {

View File

@ -48,10 +48,10 @@ local options = {
},
glyphs = {
default = "",
default = "󰈚",
symlink = "",
folder = {
default = "",
default = "󰉋",
empty = "",
empty_open = "",
open = "",

View File

@ -53,7 +53,7 @@ M.gitsigns = {
signs = {
add = { hl = "DiffAdd", text = "", numhl = "GitSignsAddNr" },
change = { hl = "DiffChange", text = "", numhl = "GitSignsChangeNr" },
delete = { hl = "DiffDelete", text = "", numhl = "GitSignsDeleteNr" },
delete = { hl = "DiffDelete", text = "󰍵", numhl = "GitSignsDeleteNr" },
topdelete = { hl = "DiffDelete", text = "", numhl = "GitSignsDeleteNr" },
changedelete = { hl = "DiffChangeDelete", text = "~", numhl = "GitSignsChangeNr" },
untracked = { hl = "GitSignsAdd", text = "", numhl = "GitSignsAddNr", linehl = "GitSignsAddLn" },

View File

@ -1,31 +0,0 @@
local options = {
icons = {
breadcrumb = "»", -- symbol used in the command line area that shows your active key combo
separator = "", -- symbol used between a key and it's label
group = "+", -- symbol prepended to a group
},
popup_mappings = {
scroll_down = "<c-d>", -- binding to scroll down inside the popup
scroll_up = "<c-u>", -- binding to scroll up inside the popup
},
window = {
border = "none", -- none/single/double/shadow
},
layout = {
spacing = 6, -- spacing between columns
},
hidden = { "<silent>", "<cmd>", "<Cmd>", "<CR>", "call", "lua", "^:", "^ " },
triggers_blacklist = {
-- list of mode / prefixes that should never be hooked by WhichKey
i = { "j", "k" },
v = { "j", "k" },
},
}
return options

View File

@ -95,7 +95,7 @@ local default_plugins = {
-- git stuff
{
"lewis6991/gitsigns.nvim",
ft = "gitcommit",
ft = { "gitcommit", "diff" },
init = function()
-- load gitsigns only when a git file is opened
vim.api.nvim_create_autocmd({ "BufRead" }, {
@ -190,7 +190,6 @@ local default_plugins = {
"hrsh7th/cmp-path",
},
},
opts = function()
return require "plugins.configs.cmp"
end,
@ -233,11 +232,9 @@ local default_plugins = {
init = function()
require("core.utils").load_mappings "telescope"
end,
opts = function()
return require "plugins.configs.telescope"
end,
config = function(_, opts)
dofile(vim.g.base46_cache .. "telescope")
local telescope = require "telescope"
@ -257,9 +254,6 @@ local default_plugins = {
init = function()
require("core.utils").load_mappings "whichkey"
end,
opts = function()
return require "plugins.configs.whichkey"
end,
config = function(_, opts)
dofile(vim.g.base46_cache .. "whichkey")
require("which-key").setup(opts)