updates, reworking

This commit is contained in:
2025-05-20 19:37:03 +02:00
parent a7a3da24c2
commit 0e34591f0a
52 changed files with 95 additions and 5624 deletions
+13 -13
View File
@@ -5,25 +5,25 @@
enable = true;
settings = {
logo = {
source = "nixos";
# source = "~/pictures/lil-penguin.png";
# type = "kitty";
width = 18;
height = 9;
color = {
"1" = "white";
"2" = "magenta";
};
# source = "nixos";
source = "$HOME/pictures/smol-penguin.png";
type = "kitty";
# width = 18;
# height = 9;
# color = {
# "1" = "white";
# "2" = "green";
# };
padding = {
top = 0; # put this on 2 for picture source
top = 1; # put this on 2 for picture source
left = 1;
right = 3;
right = 2;
};
};
display = {
separator = " -> ";
color = {
keys = "magenta";
keys = "green";
};
};
modules = [
@@ -31,7 +31,7 @@
{
type = "custom";
format = " Env ";
color = "magenta";
color = "green";
}
{
type = "os";
-32
View File
@@ -1,32 +0,0 @@
{ pkgs, ... }:
{
programs.neovim = {
enable = true;
package = pkgs.neovim-unwrapped;
vimAlias = true;
vimdiffAlias = true;
plugins = with pkgs; [
vimPlugins.rose-pine
vimPlugins.telescope-nvim
vimPlugins.nvim-treesitter
vimPlugins.nvim-treesitter-context
vimPlugins.plenary-nvim
vimPlugins.undotree
vimPlugins.harpoon
vimPlugins.lualine-nvim
vimPlugins.vim-fugitive
vimPlugins.lsp-zero-nvim
vimPlugins.nvim-lspconfig
vimPlugins.nvim-cmp
vimPlugins.cmp-path
vimPlugins.cmp-buffer
vimPlugins.cmp_luasnip
vimPlugins.cmp-nvim-lsp
vimPlugins.cmp-nvim-lua
vimPlugins.luasnip
vimPlugins.friendly-snippets
];
};
}