mirror of
https://github.com/tedkulp/dotfiles
synced 2026-04-18 21:54:46 -04:00
fix: theme stuff
This commit is contained in:
+32
-6
@@ -1,7 +1,7 @@
|
|||||||
local utils = require "lvim.utils"
|
local utils = require "lvim.utils"
|
||||||
|
|
||||||
lvim.log.level = "warn"
|
lvim.log.level = "warn"
|
||||||
lvim.colorscheme = "dracula"
|
lvim.colorscheme = "catppuccin"
|
||||||
vim.opt.clipboard = "unnamed,unnamedplus"
|
vim.opt.clipboard = "unnamed,unnamedplus"
|
||||||
vim.opt.guifont = "JetBrainsMono Nerd Font Mono:h12"
|
vim.opt.guifont = "JetBrainsMono Nerd Font Mono:h12"
|
||||||
vim.opt.timeoutlen = 50
|
vim.opt.timeoutlen = 50
|
||||||
@@ -12,7 +12,7 @@ lvim.builtin.which_key.mappings['W'] = { ":w<cr>", "Save Buffer" }
|
|||||||
lvim.format_on_save = {
|
lvim.format_on_save = {
|
||||||
timeout = 5000,
|
timeout = 5000,
|
||||||
}
|
}
|
||||||
lvim.builtin.lualine.options.theme = "dracula-nvim"
|
lvim.builtin.lualine.options.theme = "catppuccin"
|
||||||
lvim.builtin.bufferline.options.show_buffer_close_icons = false
|
lvim.builtin.bufferline.options.show_buffer_close_icons = false
|
||||||
lvim.builtin.bufferline.options.numbers = "buffer_id"
|
lvim.builtin.bufferline.options.numbers = "buffer_id"
|
||||||
lvim.builtin.bufferline.options.separator_style = "slant"
|
lvim.builtin.bufferline.options.separator_style = "slant"
|
||||||
@@ -94,6 +94,14 @@ lvim.plugins = {
|
|||||||
{
|
{
|
||||||
"lunarvim/horizon.nvim",
|
"lunarvim/horizon.nvim",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"luisiacc/gruvbox-baby",
|
||||||
|
branch = "main",
|
||||||
|
config = function()
|
||||||
|
vim.g.gruvbox_baby_telescope_theme = 1
|
||||||
|
vim.g.gruvbox_baby_transparent_mode = 0
|
||||||
|
end,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"Mofiqul/dracula.nvim",
|
"Mofiqul/dracula.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
@@ -101,14 +109,31 @@ lvim.plugins = {
|
|||||||
vim.g.dracula_italic_comment = true
|
vim.g.dracula_italic_comment = true
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{ "catppuccin/nvim",
|
||||||
|
as = "catppuccin",
|
||||||
|
config = function()
|
||||||
|
require('catppuccin').setup({
|
||||||
|
dim_inactive = {
|
||||||
|
enabled = true,
|
||||||
|
},
|
||||||
|
integrations = {
|
||||||
|
which_key = true,
|
||||||
|
indent_blankline = {
|
||||||
|
colored_indent_levels = true,
|
||||||
|
},
|
||||||
|
hop = true,
|
||||||
|
}
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"kylechui/nvim-surround",
|
"kylechui/nvim-surround",
|
||||||
config = function()
|
config = function()
|
||||||
require("nvim-surround").setup({
|
require("nvim-surround").setup({
|
||||||
delimiters = {
|
surrounds = {
|
||||||
invalid_key_behavior = function(char)
|
-- invalid_key_behavior = function(char)
|
||||||
return { char, char }
|
-- return { char, char }
|
||||||
end
|
-- end
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
@@ -444,6 +469,7 @@ lvim.plugins = {
|
|||||||
delete_buffer = false,
|
delete_buffer = false,
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
vim.keymap.set("n", "<c-'>", "<cmd>Telescope marks<cr>", { noremap = true, silent = true })
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
AWESOME_FZF_LOCATION="$HOME/.config/zsh/awesome-fzf.zsh"
|
AWESOME_FZF_LOCATION="$HOME/.config/zsh/awesome-fzf.zsh"
|
||||||
|
export FZF_DEFAULT_OPTS=" \
|
||||||
|
--color=bg+:#363a4f,bg:#24273a,spinner:#f4dbd6,hl:#ed8796 \
|
||||||
|
--color=fg:#cad3f5,header:#ed8796,info:#c6a0f6,pointer:#f4dbd6 \
|
||||||
|
--color=marker:#f4dbd6,fg+:#cad3f5,prompt:#c6a0f6,hl+:#ed8796"
|
||||||
|
|
||||||
#List Awesome FZF Functions
|
#List Awesome FZF Functions
|
||||||
function fzf-awesome-list() {
|
function fzf-awesome-list() {
|
||||||
|
|||||||
Reference in New Issue
Block a user