fix theming
This commit is contained in:
parent
edfe487b8a
commit
39c8317c93
11 changed files with 467 additions and 126 deletions
|
@ -115,7 +115,7 @@ with lib;
|
|||
{
|
||||
mode = "n";
|
||||
key = "<leader>q";
|
||||
action = ":bd<R>"; # Delete buffer
|
||||
action = ":bd<CR>"; # Delete buffer
|
||||
}
|
||||
{
|
||||
mode = "n";
|
||||
|
@ -187,13 +187,13 @@ with lib;
|
|||
nvim-nio
|
||||
];
|
||||
|
||||
extraConfigLua = "";
|
||||
|
||||
colorschemes.catppuccin = {
|
||||
enable = true;
|
||||
flavour = "frappe";
|
||||
};
|
||||
|
||||
extraConfigLua = "";
|
||||
|
||||
plugins = {
|
||||
image = {
|
||||
enable = true;
|
||||
|
@ -220,7 +220,7 @@ with lib;
|
|||
}
|
||||
{
|
||||
name = "notes";
|
||||
path = "~/src/notes";
|
||||
path = "~/cloud/Notes";
|
||||
}
|
||||
];
|
||||
completion = {
|
||||
|
@ -278,10 +278,12 @@ with lib;
|
|||
surround.enable = true;
|
||||
fugitive.enable = true;
|
||||
gitgutter.enable = true;
|
||||
|
||||
lualine = {
|
||||
enable = true;
|
||||
theme = "catppuccin";
|
||||
};
|
||||
|
||||
telescope = {
|
||||
enable = true;
|
||||
defaults.preview.ls_short = true;
|
||||
|
@ -354,7 +356,14 @@ with lib;
|
|||
lspkind.enable = true;
|
||||
lspsaga = {
|
||||
enable = true;
|
||||
lightbulb.virtualText = false;
|
||||
lightbulb.enable = false;
|
||||
};
|
||||
nvim-lightbulb = {
|
||||
enable = true;
|
||||
settings = {
|
||||
autocmd.enabled = true;
|
||||
number.enabled = true;
|
||||
};
|
||||
};
|
||||
vimtex.enable = true;
|
||||
floaterm.enable = true;
|
||||
|
|
|
@ -10,6 +10,10 @@ for key, _ in pairs(obsidian_commands) do
|
|||
table.insert(results, string.sub(key, 9))
|
||||
end
|
||||
|
||||
Local = 100
|
||||
local Local = 3
|
||||
print(Local)
|
||||
|
||||
local obsidian_picker = function(opts)
|
||||
opts = opts or require("telescope.themes").get_dropdown{}
|
||||
pickers.new(opts, {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue