save
This commit is contained in:
@@ -1,40 +1,54 @@
|
||||
return {
|
||||
"nvim-lualine/lualine.nvim",
|
||||
requires = { "kyazdani42/nvim-web-devicons" },
|
||||
dependencies = {
|
||||
"norcalli/nvim-colorizer.lua",
|
||||
"zaldih/themery.nvim",
|
||||
"FrenzyExists/aquarium-vim",
|
||||
"vague2k/vague.nvim",
|
||||
"catppuccin/nvim",
|
||||
},
|
||||
config = function()
|
||||
require("lualine").setup({
|
||||
options = {
|
||||
theme = "ayu_mirage",
|
||||
component_separators = "",
|
||||
section_separators = "",
|
||||
"nvim-lualine/lualine.nvim",
|
||||
requires = { "kyazdani42/nvim-web-devicons" },
|
||||
dependencies = {
|
||||
"norcalli/nvim-colorizer.lua",
|
||||
"zaldih/themery.nvim",
|
||||
"FrenzyExists/aquarium-vim",
|
||||
"vague2k/vague.nvim",
|
||||
"catppuccin/nvim",
|
||||
"morhetz/gruvbox",
|
||||
"shaunsingh/nord.nvim",
|
||||
"rose-pine/neovim",
|
||||
"folke/tokyonight.nvim",
|
||||
},
|
||||
config = function()
|
||||
require("lualine").setup({
|
||||
options = {
|
||||
theme = "auto",
|
||||
component_separators = "",
|
||||
section_separators = "",
|
||||
},
|
||||
sections = {
|
||||
lualine_a = { "mode" },
|
||||
lualine_b = {},
|
||||
lualine_c = { "filename" },
|
||||
lualine_x = {},
|
||||
lualine_y = {},
|
||||
lualine_z = {
|
||||
function()
|
||||
return "[" .. vim.bo.filetype .. "]"
|
||||
end,
|
||||
},
|
||||
sections = {
|
||||
lualine_a = { "mode" },
|
||||
lualine_b = {},
|
||||
lualine_c = { "filename" },
|
||||
lualine_x = {},
|
||||
lualine_y = {},
|
||||
lualine_z = {
|
||||
function()
|
||||
return "[" .. vim.bo.filetype .. "]"
|
||||
end,
|
||||
},
|
||||
},
|
||||
})
|
||||
require("colorizer").setup({
|
||||
"*",
|
||||
css = { rgb_fn = true },
|
||||
})
|
||||
require("themery").setup({
|
||||
themes = {"aquarium", "vague", "catppuccin-mocha"},
|
||||
livePreview = true,
|
||||
})
|
||||
end,
|
||||
},
|
||||
})
|
||||
require("colorizer").setup({
|
||||
"*",
|
||||
css = { rgb_fn = true },
|
||||
})
|
||||
require("themery").setup({
|
||||
themes = {
|
||||
"aquarium",
|
||||
"vague",
|
||||
"catppuccin-mocha",
|
||||
"gruvbox",
|
||||
"catppuccin-frappe",
|
||||
"catppuccin-macchiato",
|
||||
"nord",
|
||||
"rose-pine",
|
||||
"tokyonight",
|
||||
},
|
||||
livePreview = true,
|
||||
})
|
||||
end,
|
||||
}
|
||||
|
||||
@@ -22,3 +22,6 @@ vim.keymap.set("n", "<C-k>", "<C-w><C-k>", { desc = "Move focus to the upper win
|
||||
-- DAP
|
||||
vim.keymap.set("n", "<leader>b", ":DapToggleBreakpoint<CR>", { noremap = true, silent = true, desc = "Toggle Breakpoint" })
|
||||
vim.keymap.set("n", "<leader>db", ":DapContinue<CR>", { noremap = true, silent = true, desc = "Start or Contine the Debugger" })
|
||||
|
||||
-- Theme
|
||||
vim.keymap.set("n", "<leader><C-t>", ":Themery<CR>", { noremap = true, silent = false, desc = "Change the current theme" })
|
||||
|
||||
@@ -32,3 +32,13 @@ vim.opt.colorcolumn = "127"
|
||||
|
||||
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
||||
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
||||
|
||||
vim.api.nvim_set_hl(0, 'TabLine', { fg = 'NONE', bg = 'NONE', underline = false })
|
||||
vim.api.nvim_set_hl(0, 'TabLineSel', { fg = 'NONE', bg = 'NONE', underline = false })
|
||||
vim.api.nvim_set_hl(0, 'TabLineFill', { fg = 'NONE', bg = 'NONE' })
|
||||
vim.cmd [[
|
||||
highlight TabLine guibg=NONE guifg=NONE gui=NONE
|
||||
highlight TabLineSel guibg=NONE guifg=NONE gui=NONE
|
||||
highlight TabLineFill guibg=NONE guifg=NONE gui=NONE
|
||||
]]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user