1
Fork 0

feat: attempt at setting up vieb

This commit is contained in:
Matei Adriel 2022-05-11 21:29:47 +03:00
parent 4635e538dd
commit c879c78d56
8 changed files with 66 additions and 2 deletions

26
dotfiles/vieb/.viebrc Normal file
View file

@ -0,0 +1,26 @@
" Options
set adblocker=update
set downloadmethod=confirm
set mintabwidth=250
set redirecttohttp
set tabreopenposition=previous
set windowtitle=title
set search=https://google.com/search?q=
set searchwords=w~https://www.wikipedia.org/w/index.php?title=Special:Search&search=%s
" Mappings
nmap d <action.scrollPageDownHalf>
nmap u <action.scrollPageUpHalf>
nmap yy <action.pageToClipboard>
nmap yf <pointer.start><action.startFollowCurrentTab>
nmap v <pointer.start><pointer.startVisualSelect>
nmap O <action.openNewTab><action.toExploreMode>
nmap T <action.toCommandMode>buffer<Space>
nmap x <action.closeTab>
nmap X <action.reopenTab>
nmap yt <action.openNewTabWithCurrentUrl><CR>
nmap ? <:help>
vmap c <Esc><pointer.start>
" extensions

View file

@ -51,6 +51,10 @@
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
inherit system; inherit system;
specialArgs = {
paths = import ./paths.nix;
};
modules = [ modules = [
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager
inputs.kmonad.nixosModule inputs.kmonad.nixosModule

View file

@ -0,0 +1,11 @@
{ pkgs, lib, ... }:
let
theme = pkgs.myThemes.current;
extensions = theme.chromium.extensions or [ ];
in
{
home-manager.users.adrielus.programs.chromium = {
enable = true;
extensions = lib.lists.map (id: { inherit id; }) extensions;
};
}

View file

@ -20,6 +20,8 @@
./tmux.nix ./tmux.nix
./kmonad.nix ./kmonad.nix
./direnv.nix ./direnv.nix
./chromium.nix
./vieb.nix
]; ];
} }

View file

@ -0,0 +1,10 @@
{ pkgs, paths, ... }:
let vieb = "/home/adrielus/.config/Vieb"; in
{
home-manager.users.adrielus = {
home.packages = [ pkgs.vieb ];
systemd.user.tmpfiles.rules = [
"L+ /home/adrielus/.viebrc - - - - ${paths.dotfiles}/vieb/.viebrc"
];
};
}

View file

@ -1,8 +1,8 @@
{ transparency ? 1, wallpaper }: { pkgs, ... }: { transparency ? 1, wallpaper, variant }: { pkgs, ... }:
let let
githubTheme = pkgs.myVimPlugins.githubNvimTheme; # github theme for neovim githubTheme = pkgs.myVimPlugins.githubNvimTheme; # github theme for neovim
variant = "dark";
foreign = pkgs.callPackage (import ./foreign.nix) { }; foreign = pkgs.callPackage (import ./foreign.nix) { };
v = (a: b: if variant == "light" then a else b);
in in
{ {
wallpaper = wallpaper.foreign or "${foreign.wallpapers}/${wallpaper}"; wallpaper = wallpaper.foreign or "${foreign.wallpapers}/${wallpaper}";
@ -33,6 +33,12 @@ in
@import "${foreign.rofi}/.config/rofi/config.rasi" @import "${foreign.rofi}/.config/rofi/config.rasi"
@import "${./rofi.rasi}"''; @import "${./rofi.rasi}"'';
}; };
chromium.extensions = [
# https://github.com/catppuccin/chrome
(v
"cmpdlhmnmjhihmcfnigoememnffkimlk"
"bkkmolkhemgaeaeggcmfbghljjjoofoh")
];
alacritty.settings = { alacritty.settings = {
import = [ "${foreign.alacritty}/catppuccin.yml" ]; import = [ "${foreign.alacritty}/catppuccin.yml" ];
window = { window = {

View file

@ -13,6 +13,7 @@ lib.lists.map (theme: pkgs.callPackage theme { }) [
wallpaper = "misc/rainbow.png"; wallpaper = "misc/rainbow.png";
# wallpaper.foreign = ./wallpapers/eye.png; # wallpaper.foreign = ./wallpapers/eye.png;
transparency = 0.93; transparency = 0.93;
variant = "light";
}) })
(githubVariant { (githubVariant {
variant = "light"; variant = "light";

4
paths.nix Normal file
View file

@ -0,0 +1,4 @@
rec {
root = "~/Projects/nixos-config/";
dotfiles = "${root}/dotfiles";
}