mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-25 18:28:44 +02:00
update
This commit is contained in:
parent
b347310c93
commit
631a6a9bd5
5 changed files with 556 additions and 520 deletions
|
@ -12,9 +12,9 @@ if vim.g.neovide then
|
|||
|
||||
vim.o.guifont = "Hasklug_Nerd_Font:h15"
|
||||
vim.g.neovide_padding_top = 0
|
||||
vim.g.neovide_padding_bottom = 0
|
||||
vim.g.neovide_padding_right = 0
|
||||
vim.g.neovide_padding_left = 0
|
||||
vim.g.neovide_padding_bottom = 1
|
||||
vim.g.neovide_padding_right = 1
|
||||
vim.g.neovide_padding_left = 1
|
||||
|
||||
-- config for transparent
|
||||
--vim.g.neovide_transparency = 0.8
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -109,7 +109,7 @@ nvim_tree.setup({
|
|||
-- root_folder_modifier = ":t",
|
||||
root_folder_label = false,
|
||||
indent_markers = {
|
||||
enable = false,
|
||||
enable = true,
|
||||
inline_arrows = true,
|
||||
icons = {
|
||||
corner = "└",
|
||||
|
@ -143,7 +143,11 @@ nvim_tree.setup({
|
|||
git = {
|
||||
deleted = icons.git.FileDeleted,
|
||||
-- ignored = icons.git.FileIgnored,
|
||||
ignored = "",
|
||||
-- ignored = "",
|
||||
-- ignored = "",
|
||||
-- ignored = "",
|
||||
ignored = "",
|
||||
-- ignored = icons.git.FileUnstaged,
|
||||
renamed = icons.git.FileRenamed,
|
||||
staged = icons.git.FileStaged,
|
||||
unmerged = icons.git.FileUnmerged,
|
||||
|
|
|
@ -39,7 +39,8 @@ local options = {
|
|||
writebackup = false, -- Disable making a backup before overwriting a file
|
||||
-- minimal number of screen columns either side of cursor if wrap is `false`
|
||||
-- guifont = "monospace:h17", -- the font used in graphical neovim applications
|
||||
guifont = "Source Code Pro:h17", -- the font used in graphical neovim applications
|
||||
guifont = "SauceCodePro Nerd Font:h17", -- the font used in graphical neovim applications
|
||||
-- guifont = "Hasklug Nerd Font:h16", -- the font used in graphical neovim applications
|
||||
-- guifont = "Hack Nerd Font:h17", -- the font used in graphical neovim applications
|
||||
whichwrap = "bs<>[]hl", -- which "horizontal" keys are allowed to travel to prev/next line -- which "horizontal" keys are allowed to travel to prev/next line
|
||||
}
|
||||
|
|
|
@ -11,19 +11,25 @@ material_icon.setup({
|
|||
override = {
|
||||
["mjs"] = {
|
||||
icon = "",
|
||||
color = "#efd81d",
|
||||
color = "#f2c55c",
|
||||
cterm_color = "220",
|
||||
name = "Mjs",
|
||||
},
|
||||
["js"] = {
|
||||
icon = "",
|
||||
color = "#f2c55c",
|
||||
cterm_color = "220",
|
||||
name = "javascript",
|
||||
},
|
||||
["ts"] = {
|
||||
icon = "",
|
||||
color = "#30A2FF",
|
||||
color = "#548af7",
|
||||
cterm_color = "220",
|
||||
name = "ts",
|
||||
},
|
||||
["jsx"] = {
|
||||
icon = "",
|
||||
color = "#0FBFCF",
|
||||
color = "#61dafb",
|
||||
cterm_color = "220",
|
||||
name = "jsx",
|
||||
},
|
||||
|
@ -47,7 +53,7 @@ material_icon.setup({
|
|||
},
|
||||
["json"] = {
|
||||
icon = "",
|
||||
color = "#ca8984",
|
||||
color = "#f16421",
|
||||
cterm_color = "220",
|
||||
name = "json",
|
||||
},
|
||||
|
@ -129,11 +135,35 @@ material_icon.setup({
|
|||
cterm_color = "220",
|
||||
name = "cfm",
|
||||
},
|
||||
["cfc"] = {
|
||||
icon = "",
|
||||
color = "#507F89",
|
||||
["png"] = {
|
||||
icon = "",
|
||||
color = "#3574f0",
|
||||
cterm_color = "220",
|
||||
name = "cfc",
|
||||
name = "Png",
|
||||
},
|
||||
["jpg"] = {
|
||||
icon = "",
|
||||
color = "#3574f0",
|
||||
cterm_color = "220",
|
||||
name = "jpg",
|
||||
},
|
||||
["csv"] = {
|
||||
icon = "",
|
||||
color = "#57965c",
|
||||
cterm_color = "220",
|
||||
name = "csv",
|
||||
},
|
||||
["sql"] = {
|
||||
icon = "",
|
||||
color = "#b589ec",
|
||||
cterm_color = "220",
|
||||
name = "sqlfile",
|
||||
},
|
||||
["md"] = {
|
||||
icon = "",
|
||||
color = "#42a5f5",
|
||||
cterm_color = "220",
|
||||
name = "README_file",
|
||||
},
|
||||
-- ["go"] = {
|
||||
-- icon = "",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue