diff --git a/base.nix b/base.nix deleted file mode 100644 index 0605993..0000000 --- a/base.nix +++ /dev/null @@ -1,273 +0,0 @@ -{ config, pkgs, lib, ... }: -##### Variable definitions ##### -let - - burekVariable = "burek"; - -in { - - imports = [ ./hardware.nix ]; - - ##### Environment Variables ##### - environment = { - variables = { - # PROXY SETTINGS - # http_proxy = "http://proxy.site"; - # https_proxy = "https://proxy.site"; - EXTRA_LDFLAGS = "-L/lib -L${pkgs.linuxPackages.nvidia_x11}/lib"; - CUDA_PATH = "${pkgs.cudatoolkit}"; - QT_STYLE_OVERRIDE = "kvantum"; - QT_QPA_PLATFORMTHEME = "qt5ct"; - EXTRA_CCFLAGS = "-I/usr/include"; - }; - - sessionVariables = { - LD_LIBRARY_PATH = with pkgs; - "${stdenv.cc.cc.lib.outPath}/lib:${linuxPackages.nvidia_x11}/lib:${stdenv.cc.cc.lib}/lib:${pkgs.zlib}/lib:${pkgs.libGL}/lib:${pkgs.libGLU}/lib:${pkgs.glibc}/lib:${pkgs.glib.out}/lib"; - }; - - }; - - home-manager = { - users = { spagnologasper = ./home.nix; }; - useGlobalPkgs = true; - }; - - ##### General system settings ##### - time.timeZone = "Europe/Ljubljana"; - i18n.defaultLocale = "en_US.UTF-8"; - system.stateVersion = "23.11"; - system.autoUpgrade.enable = false; - system.autoUpgrade.allowReboot = false; - nixpkgs.config.allowUnfree = true; - - ##### Hardware and bootloader configurations ##### - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; - boot.kernelModules = [ "kvm-intel" "wireguard" ]; - boot.blacklistedKernelModules = [ "nouveau" ]; - boot.extraModulePackages = [ pkgs.linuxPackages.nvidia_x11 ]; - - ### CUDA ### - nixpkgs.config.cudaSupport = true; - services.xserver.videoDrivers = [ "amdgpu" "nvidia" ]; - virtualisation.docker.enableNvidia = true; # Enable GPU support in container - - hardware.nvidia = { - - # Modesetting is required. - modesetting.enable = true; - - # Nvidia power management. Experimental, and can cause sleep/suspend to fail. - powerManagement.enable = false; - # Fine-grained power management. Turns off GPU when not in use. - # Experimental and only works on modern Nvidia GPUs (Turing or newer). - powerManagement.finegrained = false; - - # Use the NVidia open source kernel module (not to be confused with the - # independent third-party "nouveau" open source driver). - # Support is limited to the Turing and later architectures. Full list of - # supported GPUs is at: - # https://github.com/NVIDIA/open-gpu-kernel-modules#compatible-gpus - # Only available from driver 515.43.04+ - # Do not disable this unless your GPU is unsupported or if you have a good reason to. - open = true; - - # Enable the Nvidia settings menu, - # accessible via `nvidia-settings`. - nvidiaSettings = true; - - # Optionally, you may need to select the appropriate driver version for your specific GPU. - package = config.boot.kernelPackages.nvidiaPackages.stable; - }; - - # Bluetooth - hardware.bluetooth.enable = true; - - hardware.opengl = { - enable = true; - driSupport = true; - driSupport32Bit = true; - extraPackages = with pkgs; [ libGLU libGL ]; - }; - - # Enable UDisks2 service for automounting - services.udisks2.enable = true; - - ### KVM ### - services.qemuGuest.enable = true; - virtualisation.docker.enable = true; - - virtualisation.libvirtd = { - qemu = { - ovmf.enable = true; - runAsRoot = true; - }; - enable = true; - onBoot = "ignore"; - onShutdown = "shutdown"; - }; - - # Enable virt-manager - programs.virt-manager.enable = true; - programs.dconf.enable = true; # virt-manager requires dconf to remember settings - - ##### Networking settings ##### - networking.hostName = "nixos"; - networking.networkmanager.enable = true; - - networking.extraHosts = ""; - - ##### Services #### - services.pipewire = { - enable = true; - alsa.enable = true; - alsa.support32Bit = true; - pulse.enable = true; - }; - - services.xserver = { enable = true; }; - - xdg.portal = { - enable = true; - wlr.enable = true; - # gtk portal needed to make gtk apps happy - extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; - config.common.default = "*"; - }; - - services.dbus.enable = true; - services.printing.enable = true; - - # start polkit on login - systemd = { - user.services.polkit-gnome-authentication-agent-1 = { - description = "polkit-gnome-authentication-agent-1"; - wantedBy = [ "graphical-session.target" ]; - wants = [ "graphical-session.target" ]; - after = [ "graphical-session.target" ]; - serviceConfig = { - Type = "simple"; - ExecStart = - "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"; - Restart = "on-failure"; - RestartSec = 1; - TimeoutStopSec = 10; - }; - }; - }; - security.polkit.enable = true; - sound.enable = true; - hardware.pulseaudio.enable = false; - security.rtkit.enable = true; - - ##### System packages ##### - environment.systemPackages = with pkgs; [ - dconf - linuxPackages.nvidia_x11 - cudatoolkit - alacritty - wayland - xdg-utils - glib - vim - tmux - docker-compose - libguestfs - libvirt - coreutils - binutils - pciutils - dmidecode - autoconf - gcc - gnumake - llvm - libclang - clang - cmake - libtool - libvterm - ncurses5 - stdenv.cc - wget - curl - curl.dev - git-lfs - man - mkpasswd - unzip - direnv - lshw - zsh - oh-my-zsh - fzf - fd - python3 - ruby - rbenv - go - jdk - pulumi - bluez - git - wireguard-tools - polkit_gnome - openvpn - zlib - glib - glibc - file - ffmpeg - wirelesstools - udisks2 - ]; - - nixpkgs.config.permittedInsecurePackages = - [ "electron-12.2.3" "electron-19.1.9" ]; - - ##### Extra ##### - programs.zsh.enable = true; - qt.platformTheme = "qt5ct"; - - programs.mtr.enable = true; - programs.gnupg.agent = { - enable = true; - enableSSHSupport = true; - }; - - # Steam cannot be installed using home-manager, so let it be global for now - programs.steam = { - enable = true; - remotePlay.openFirewall = - true; # Open ports in the firewall for Steam Remote Play - dedicatedServer.openFirewall = - true; # Open ports in the firewall for Source Dedicated Server - }; - - nix = { - package = pkgs.nixFlakes; - extraOptions = '' - experimental-features = nix-command flakes - ''; - }; - - ##### User configurations ###### - users.users.spagnologasper = { - shell = pkgs.zsh; - isNormalUser = true; - description = "spagnologasper"; - extraGroups = [ - "wheel" - "disk" - "libvirtd" - "docker" - "audio" - "video" - "input" - "systemd-journal" - "networkmanager" - "network" - ]; - }; -} diff --git a/flake.lock b/flake.lock index fc7996d..830c491 100644 --- a/flake.lock +++ b/flake.lock @@ -20,13 +20,47 @@ "type": "github" } }, + "hypr-contrib": { + "inputs": { + "nixpkgs": "nixpkgs" + }, + "locked": { + "lastModified": 1706198673, + "narHash": "sha256-bHlxFd+3QHy6eXtTzzhwVNcyxBSOxTvBuJGNUzI4C4M=", + "owner": "hyprwm", + "repo": "contrib", + "rev": "16884001b26e6955ff4b88b4dfe4c8986e20f153", + "type": "github" + }, + "original": { + "owner": "hyprwm", + "repo": "contrib", + "type": "github" + } + }, "nixpkgs": { "locked": { - "lastModified": 1708294118, - "narHash": "sha256-evZzmLW7qoHXf76VCepvun1esZDxHfVRFUJtumD7L2M=", + "lastModified": 1658161305, + "narHash": "sha256-X/nhnMCa1Wx4YapsspyAs6QYz6T/85FofrI6NpdPDHg=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "e0da498ad77ac8909a980f07eff060862417ccf7", + "rev": "e4d49de45a3b5dbcb881656b4e3986e666141ea9", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_2": { + "locked": { + "lastModified": 1708440434, + "narHash": "sha256-XY+B9mbhL/i+Q6fP6gBQ6P76rv9rWtpjQiUJ+DGtaUg=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "526d051b128b82ae045a70e5ff1adf8e6dafa560", "type": "github" }, "original": { @@ -39,7 +73,8 @@ "root": { "inputs": { "home-manager": "home-manager", - "nixpkgs": "nixpkgs" + "hypr-contrib": "hypr-contrib", + "nixpkgs": "nixpkgs_2" } } }, diff --git a/flake.nix b/flake.nix index 2e23c43..e991028 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - description = "My NixOS flake configuration"; + description = "Pwnix: NixOS Dotfiles focused on Hacking and Productivity."; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11"; @@ -7,25 +7,45 @@ url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; + hypr-contrib.url = "github:hyprwm/contrib"; }; - outputs = { self, nixpkgs, home-manager, ... }: { - formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixpkgs-fmt; + outputs = { nixpkgs, home-manager, ... }@inputs: + let + system = "x86_64-linux"; + pkgs = nixpkgs.legacyPackages.${system}; + lib = nixpkgs.lib; - overlays.my = import ./pkgs; + # ---CUSTOM SETTINGS--- - nixosConfigurations = { - yoga = nixpkgs.lib.nixosSystem { - system = "x86_64-linux"; - modules = [ home-manager.nixosModules.home-manager ./systems/yoga/configuration.nix ]; - }; + user = "spagnologasper"; + hostName = "yoga"; + + # ---CUSTOM SETTINGS--- + + mkSystem = pkgs: system: hostname: + pkgs.lib.nixosSystem { + system = system; + modules = [ + ./modules/system/configuration.nix + (./. + "/hosts/${hostname}/hardware-configuration.nix") + (./. + "/hosts/${hostname}/default.nix") + home-manager.nixosModules.home-manager + { + home-manager = { + useUserPackages = true; + useGlobalPkgs = true; + extraSpecialArgs = { inherit inputs user; }; + users.${user} = (./. + "/hosts/${hostname}/user.nix"); + }; + } + ]; + specialArgs = {inherit inputs user hostName; }; + }; + + in { + nixosConfigurations = { + yoga = mkSystem inputs.nixpkgs "x86_64-linux" "yoga"; + }; }; - - homeConfigurations = { - spagnologasper = home-manager.lib.homeManagerConfiguration { - pkgs = nixpkgs.legacyPackages."x86_64-linux"; - modules = [ ./home.nix ]; - }; - }; - }; } diff --git a/hardware.nix b/hardware.nix deleted file mode 100644 index 8f4660d..0000000 --- a/hardware.nix +++ /dev/null @@ -1,38 +0,0 @@ -# Do not modify this file! It was generated by ‘nixos-generate-config’ -# and may be overwritten by future invocations. Please make changes -# to /etc/nixos/configuration.nix instead. -{ config, lib, pkgs, modulesPath, ... }: - -{ - imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; - - boot.initrd.availableKernelModules = - [ "nvme" "xhci_pci" "usb_storage" "sd_mod" ]; - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-amd" ]; - boot.extraModulePackages = [ ]; - - fileSystems."/" = { - device = "/dev/disk/by-uuid/0899771d-54fe-4a08-917d-4e31fc6b4d3d"; - fsType = "ext4"; - }; - - fileSystems."/boot" = { - device = "/dev/disk/by-uuid/D414-BBFF"; - fsType = "vfat"; - }; - - swapDevices = - [{ device = "/dev/disk/by-uuid/a439d0f1-e65c-4178-abd8-d0d31dc9ba18"; }]; - - # Enables DHCP on each ethernet and wireless interface. In case of scripted networking - # (the default) this is the recommended approach. When using systemd-networkd it's - # still possible to use this option, but it's recommended to use it in conjunction - # with explicit per-interface declarations with `networking.interfaces..useDHCP`. - networking.useDHCP = lib.mkDefault true; - # networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true; - - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - hardware.cpu.amd.updateMicrocode = - lib.mkDefault config.hardware.enableRedistributableFirmware; -} diff --git a/home.nix b/home.nix deleted file mode 100644 index 9d88677..0000000 --- a/home.nix +++ /dev/null @@ -1,1175 +0,0 @@ -{ config, pkgs, lib, ... }: - -let - dbus-sway-environment = pkgs.writeTextFile { - name = "dbus-sway-environment"; - destination = "/bin/dbus-sway-environment"; - executable = true; - text = '' - dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway - systemctl --user import-environment DISPLAY WAYLAND_DISPLAY SWAYSOCK - exec hash dbus-update-activation-environment 2>/dev/null && \ - dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK - systemctl --user stop pipewire pipewire-media-session xdg-desktop-portal xdg-desktop-portal-wlr - systemctl --user start pipewire pipewire-media-session xdg-desktop-portal xdg-desktop-portal-wlr - ''; - }; - -in { - # Home Manager needs a bit of information about you and the paths it should - # manage. - home.username = "spagnologasper"; - home.homeDirectory = "/home/spagnologasper"; - - # This value determines the Home Manager release that your configuration is - # compatible with. This helps avoid breakage when a new Home Manager release - # introduces backwards incompatible changes. - # - # You should not change this value, even if you update Home Manager. If you do - # want to update the value, then make sure to first check the Home Manager - # release notes. - home.stateVersion = "23.11"; # Please read the comment before changing. - - # The home.packages option allows you to install Nix packages into your - # environment. - home.packages = with pkgs; [ - # Appearence - dracula-theme - gnome3.adwaita-icon-theme - # Development - dbeaver - libreoffice - zathura - okular - conda - vscode - joplin-desktop - # Tools / File managenemt - sshpass - gparted - etcher - transmission-gtk - filezilla - xournalpp - pdftk - reuse - pandoc - texlive.combined.scheme-full - remmina - pcmanfm - jq - feh - ranger - uget - stow - bat - eza - # Statistics - btop - nvitop - cava - acpi - brightnessctl - neofetch - htop-vim - # Programming languages - ansible - # Database connection tools - mysql - #mongodb .. install it using nix-shell as it build itself each time (time consuming) - sqlite - postgresql - # Audio video image - easyeffects - krita - spotify - shotwell - fdupes # find image duplicates based on their contents - mpv - imagemagick - vlc - blueberry # Bluetooth client (GUI) - # Voice chat - discord - zoom-us - slack - teams-for-linux - # Shell extras - starship - lsd - # Learning - anki-bin - # Games - superTuxKart - # Security - steghide - exiftool - fcrackzip - ghidra-bin - tshark - tcpdump - gdb - gef - nmap - # Format tools - black - nixfmt - # Maths - R - # Sway - dbus-sway-environment - swaylock - swayidle - wl-clipboard - wf-recorder - mako - kanshi - alacritty - dmenu - slurp - bemenu - wdisplays - rofi - wl-mirror - networkmanagerapplet - # Rofi plugins - rofi-bluetooth - # Audo control - pulsemixer - pavucontrol - nextcloud-client - # Mailing - thunderbird-bin - # Flameshot - xdg-desktop-portal - xdg-desktop-portal-wlr - grim - flameshot - # Networking statistics - nload - # Disk usage - ncdu - # Compression - zip - unzip - pigz - p7zip - parallel - ddrescue - ripgrep - # Browsers - brave - firefox - google-chrome - # colored output in terminal - grc - # Fonts - fira-code - fira - cooper-hewitt - ibm-plex - jetbrains-mono - iosevka - spleen - fira-code-symbols - powerline-fonts - nerdfonts - ]; - - # Home Manager is pretty good at managing dotfiles. The primary way to manage - # plain files is through 'home.file'. - home.file = { - #".config/nvim".source = - # "${config.home.homeDirectory}/Documents/dots-fresh/home_dir/.config/nvim"; - ".local/share/rofi/themes/catppuccin-mocha.rasi".source = - "${config.home.homeDirectory}/Documents/dots-fresh/home_dir/.local/share/rofi/themes/catppuccin-mocha.rasi"; - # # Building this configuration will create a copy of 'dotfiles/screenrc' in - # # the Nix store. Activating the configuration will then make '~/.screenrc' a - # # symlink to the Nix store copy. - # ".screenrc".source = dotfiles/screenrc; - - # # You can also set the file content immediately. - # ".gradle/gradle.properties".text = '' - # org.gradle.console=verbose - # org.gradle.daemon.idletimeout=3600000 - # ''; - }; - - xdg.configFile."xdg-desktop-portal/sway-portals.conf".text = '' - [preferred] - default=gtk - org.freedesktop.impl.portal.Screencast=wlr - org.freedesktop.impl.portal.Screenshot=wlr - ''; - - home.sessionVariables = { EDITOR = "nvim"; }; - - # Let Home Manager install and manage itself. - programs.home-manager.enable = true; - nixpkgs.config.allowUnfree = true; - nixpkgs.config.permittedInsecurePackages = - [ "electron-12.2.3" "electron-19.1.9" ]; # Temporal - nixpkgs.config.brave.commandLineArgs = - "--enable-features=UseOzonePlatform --ozone-platform=wayland"; - - services.gammastep = { - enable = true; - provider = "manual"; - latitude = 46.0569; - longitude = 14.5058; - tray = true; - temperature.night = 4500; - }; - - programs.vscode = { - enable = true; - extensions = with pkgs.vscode-extensions; [ - dracula-theme.theme-dracula - vscodevim.vim - yzhang.markdown-all-in-one - github.copilot - ]; - }; - - programs.fzf = { - enable = true; - enableZshIntegration = true; - }; - - programs.zsh = { - enable = true; - shellAliases = { - md-notes = "cd ~/Documents/md-notes/ && nvim ."; - randwall = "feh --bg-scale --randomize ~/pictures/wallpapers/*"; - zapiski = "~/Documents/faks_git/FRI-ZAPISKI"; - ctf = "cd ~/Documents/ctf/2022"; - faks = "cd ~/Documents/faks"; - faks-git = "cd ~/Documents/faks_git"; - rm = "rm -i"; - night = "brightnessctl s 1%"; - nightlock = "swaylock -c 000000"; - hsrv = "ssh hsrv"; - rs = "export QT_QPA_PLATFORM=xcb; rstudio-bin --no-sandbox &"; - rot13 = "tr 'A-Za-z' 'N-ZA-Mn-za-m'"; - nix-update = "nix-channel --update && nix-env -u"; - ls = "lsd"; - sus = "systemctl suspend"; - sur = "systemctl reboot"; - sup = "power off"; - hg = "history | grep"; - ss = "grc ss"; - tree = "eza --tree"; - rebuild-os = - "sudo nixos-rebuild switch --flake ${config.home.homeDirectory}/.config/home-manager#yoga --impure"; - }; - initExtra = '' - export EDITOR='nvim' - - bin_txt() { - curl -X PUT --data "$1" https://p.spanskiduh.dev - } - - bin_file() { - curl -X PUT --data-binary "@$1" https://p.spanskiduh.dev - } - - cleanup-os() { - sudo nix-env --list-generations --profile /nix/var/nix/profiles/system - sudo nix-env --delete-generations old --profile /nix/var/nix/profiles/system - sudo nix-collect-garbage -d - sudo nix-store --optimize - sudo nix-env --list-generations --profile /nix/var/nix/profiles/system - - } - - # Gpg tty - GPG_TTY=$(tty) - export GPG_TTY - export FUNCNEST=500 - - ''; - oh-my-zsh = { - enable = true; - theme = "cypher"; - plugins = [ - "sudo" - "terraform" - "systemadmin" - "vi-mode" - "z" - "colorize" - "compleat" - "ansible" - ]; - }; - - plugins = [ - { - name = "zsh-autosuggestions"; - src = pkgs.fetchFromGitHub { - owner = "zsh-users"; - repo = "zsh-autosuggestions"; - rev = "v0.4.0"; - sha256 = "0z6i9wjjklb4lvr7zjhbphibsyx51psv50gm07mbb0kj9058j6kc"; - }; - } - { - name = "fzf-tab"; - src = pkgs.fetchFromGitHub { - owner = "Aloxaf"; - repo = "fzf-tab"; - rev = "b06e7574577cd729c629419a62029d31d0565a7a"; - sha256 = "sha256-ilUavAIWmLiMh2PumtErMCpOcR71ZMlQkKhVOTDdHZw="; - }; - } - { - name = "warhol"; - src = pkgs.fetchFromGitHub { - owner = "unixorn"; - repo = "warhol.plugin.zsh"; - rev = "49a2fb6789179c789f54b95221c91fdc1bd5f804"; - sha256 = "sha256-cL7qfgoJseS/epWPyzUy0Ul4GMtyPzYkZ5tsHbRjcRI="; - }; - } - ]; - - }; - - programs.git = { - enable = true; - userName = "Gašper Spagnolo"; - userEmail = "gasper.spagnolo@outlook.com"; - signing.key = "9EE5C796920C339839F4EFF646DCDBC936F8414C"; - signing.signByDefault = true; - - aliases = { - ci = "commit"; - co = "checkout"; - cp = "cherry-pick"; - s = "status -uall"; - br = "branch"; - aliases = "!git config -l | grep alias | cut -c 7-"; - hist = - "log --pretty=format:'%C(yellow)%h%Creset%C(auto)%d - %s %Cblue[%an]' --graph --date=short --decorate --branches --remotes --tags"; - blobs = - "!git rev-list --objects --all | git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' | sed -n 's/^blob //p' | sort --numeric-sort --key=2 | cut -c 1-12,41- | $(command -v gnumfmt || echo numfmt) --field=2 --to=iec-i --suffix=B --padding=7 --round=nearest"; - fap = "fetch --all --prune --progress"; - l = - "log --graph --pretty='%Cred%h%Creset - %C(bold blue)<%an>%Creset %s%C(yellow)%d%Creset %Cgreen(%cr)' --abbrev-commit --date=relative"; - fixup = "commit --fixup"; - pr-diff = "diff upstream/HEAD.."; - pr-log = "l upstream/HEAD.."; - pr-edit = - "rebase --interactive --autosquash --rerere-autoupdate --rebase-merges --fork-point upstream/HEAD"; - pr-clean = - "-c sequence.editor=true rebase --interactive --autosquash --rerere-autoupdate --empty drop --no-keep-empty --fork-point upstream/HEAD"; - pr-update = "pull --rebase=merges upstream HEAD"; - }; - - extraConfig = { - merge.conflictstyle = "diff3"; - push.default = "current"; - pull.rebase = true; - init.defaultBranch = "master"; - url."git@github.com:".insteadOf = "https://github.com/"; - branch.sort = "-committerdate"; - tag.sort = "-v:refname"; - }; - }; - - programs.tmux = { - enable = true; - clock24 = true; - - extraConfig = '' - # Alacritty term support - set -g default-terminal "tmux-256color" - set -sg terminal-overrides ",*:RGB" - - # Enable vim keys - set-window-option -g mode-keys vi - bind h select-pane -L - bind j select-pane -D - bind k select-pane -U - bind l select-pane -R - bind -r ^ last-window - - bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'wl-copy' - - # Remap prefix to Control + a - # unbind C-b - # set-option -g prefix C-a - # bind-key C-a send-prefix - - # Set mouse - set -g mouse on - - # Increase history size - set-option -g history-limit 10000 - - # Scripts - # bind-key -r S run-shell "tmux neww ~/.local/scripts/ssh-connect.sh" - # bind-key T run-shell "tmux neww tms" - - # Colors - set-option -g pane-active-border-style fg='#6272a4' - set-option -g pane-border-style fg='#ff79c6' - # set-option -g status-bg black - set-option -g status-fg black - set -g status-right '#[fg=black,bg=#e95678] #{cpu_percentage}  %H:%M ' - run-shell ${pkgs.tmuxPlugins.cpu}/share/tmux-plugins/cpu/cpu.tmux - run-shell ${pkgs.tmuxPlugins.tmux-fzf}/share/tmux-plugins/tmux-fzf/main.tmux - ''; - }; - - wayland.windowManager.sway = { - enable = true; - - config = { - # Set variables - modifier = "Mod4"; - terminal = "${pkgs.alacritty}/bin/alacritty"; - - # Client styling - colors = { - focused = { - border = "#DA6E89"; - background = "#DA6E89"; - text = "#FFFFFF"; - indicator = "#98C379"; - childBorder = "#DA6E89"; - }; - focusedInactive = { - border = "#61AFEF"; - background = "#61AFEF"; - text = "#1E222A"; - indicator = "#98C379"; - childBorder = "#61AFEF"; - }; - unfocused = { - border = "#2C3038"; - background = "#2C3038"; - text = "#FFFFFF"; - indicator = "#98C379"; - childBorder = "#2C3038"; - }; - urgent = { - border = "#C678DD"; - background = "#C678DD"; - text = "#FFFFFF"; - indicator = "#98C379"; - childBorder = "#C678DD"; - }; - placeholder = { - border = "#1E222A"; - background = "#1E222A"; - text = "#FFFFFF"; - indicator = "#98C379"; - childBorder = "#1E222A"; - }; - background = "#1E222A"; - }; - - floating = { - modifier = "Mod4"; - border = 0; - }; - - window = { border = 0; }; - - # Keybindings and other configurations - keybindings = { - "${config.wayland.windowManager.sway.config.modifier}+Return" = - "exec ${config.wayland.windowManager.sway.config.terminal}"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+q" = "kill"; - "${config.wayland.windowManager.sway.config.modifier}+d" = - "exec --no-startup-id rofi -show drun"; - "${config.wayland.windowManager.sway.config.modifier}+n" = - "exec --no-startup-id ~/.config/i3/rofi/bin/network_menu"; - "${config.wayland.windowManager.sway.config.modifier}+x" = - "exec --no-startup-id ~/.config/i3/rofi/bin/powermenu"; - "${config.wayland.windowManager.sway.config.modifier}+m" = - "exec --no-startup-id rofi-bluetooth"; - "${config.wayland.windowManager.sway.config.modifier}+F2" = - "exec --no-startup-id ~/.config/i3/rofi/bin/windows"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+c" = - "reload"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+e" = - "exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -B 'Yes, exit sway' 'swaymsg exit'"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+space" = - "floating toggle"; - "${config.wayland.windowManager.sway.config.modifier}+f" = "fullscreen"; - "${config.wayland.windowManager.sway.config.modifier}+b" = "splith"; - "${config.wayland.windowManager.sway.config.modifier}+v" = "splitv"; - "${config.wayland.windowManager.sway.config.modifier}+s" = - "layout stacking"; - "${config.wayland.windowManager.sway.config.modifier}+w" = - "layout tabbed"; - "${config.wayland.windowManager.sway.config.modifier}+e" = - "layout toggle split"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+minus" = - "move scratchpad"; - "${config.wayland.windowManager.sway.config.modifier}+minus" = - "scratchpad show"; - "${config.wayland.windowManager.sway.config.modifier}+r" = - "mode 'resize'"; - "XF86MonBrightnessUp" = "exec brightnessctl s +5%"; - "XF86MonBrightnessDown" = "exec brightnessctl s 5%-"; - "XF86AudioRaiseVolume" = - "exec --no-startup-id wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+"; - "XF86AudioLowerVolume" = - "exec --no-startup-id wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"; - "XF86AudioMute" = - "exec --no-startup-id wpctl set-volume @DEFAULT_AUDIO_SINK@ 0"; - "XF86AudioMicMute" = - "exec --no-startup-id wpctl set-source-mute @DEFAULT_SOURCE@ toggle"; - "Print" = "exec flameshot gui"; - "${config.wayland.windowManager.sway.config.modifier}+F1" = - "exec swaylock -c 000000"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+b" = - "exec brave --enable-features=UseOzonePlatform --ozone-platform=wayland"; - - # Movement - "${config.wayland.windowManager.sway.config.modifier}+h" = "focus left"; - "${config.wayland.windowManager.sway.config.modifier}+j" = "focus down"; - "${config.wayland.windowManager.sway.config.modifier}+k" = "focus up"; - "${config.wayland.windowManager.sway.config.modifier}+l" = - "focus right"; - "${config.wayland.windowManager.sway.config.modifier}+Left" = - "focus left"; - "${config.wayland.windowManager.sway.config.modifier}+Down" = - "focus down"; - "${config.wayland.windowManager.sway.config.modifier}+Up" = "focus up"; - "${config.wayland.windowManager.sway.config.modifier}+Right" = - "focus right"; - - # Workspace management - "${config.wayland.windowManager.sway.config.modifier}+1" = - "workspace number 1"; - "${config.wayland.windowManager.sway.config.modifier}+2" = - "workspace number 2"; - "${config.wayland.windowManager.sway.config.modifier}+3" = - "workspace number 3"; - "${config.wayland.windowManager.sway.config.modifier}+4" = - "workspace number 4"; - "${config.wayland.windowManager.sway.config.modifier}+5" = - "workspace number 5"; - "${config.wayland.windowManager.sway.config.modifier}+6" = - "workspace number 6"; - "${config.wayland.windowManager.sway.config.modifier}+7" = - "workspace number 7"; - "${config.wayland.windowManager.sway.config.modifier}+8" = - "workspace number 8"; - "${config.wayland.windowManager.sway.config.modifier}+9" = - "workspace number 9"; - "${config.wayland.windowManager.sway.config.modifier}+0" = - "workspace number 0"; - - # Moving containers to workspaces - "${config.wayland.windowManager.sway.config.modifier}+Shift+1" = - "move container to workspace number 1"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+2" = - "move container to workspace number 2"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+3" = - "move container to workspace number 3"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+4" = - "move container to workspace number 4"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+5" = - "move container to workspace number 5"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+6" = - "move container to workspace number 6"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+7" = - "move container to workspace number 7"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+8" = - "move container to workspace number 8"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+9" = - "move container to workspace number 9"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+0" = - "move container to workspace number 0"; - - # Move windows - "${config.wayland.windowManager.sway.config.modifier}+Shift+h" = - "move left"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+j" = - "move down"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+k" = - "move up"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+l" = - "move right"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+Left" = - "move left"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+Down" = - "move down"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+Up" = - "move up"; - "${config.wayland.windowManager.sway.config.modifier}+Shift+Right" = - "move right"; - }; - - }; - - extraConfig = '' - for_window [class="^.*"] border pixel 1 - for_window [class="feh"] floating enable, border none resize set 1600 1000, move position center - for_window [app_id="flameshot"] border pixel 0, floating enable, fullscreen disable, move absolute position 0 0 - - output * bg ${config.home.homeDirectory}/Documents/dots-fresh/wallpapers/.wallpapers/pinky.png fill - exec_always --no-startup-id nm-applet - ''; - - extraOptions = [ "--unsupported-gpu" ]; - - extraSessionCommands = '' - export SDL_VIDEODRIVER=wayland - export QT_QPA_PLATFORM=wayland - export QT_WAYLAND_DISABLE_WINDOWDECORATION="1" - export _JAVA_AWT_WM_NONREPARENTING=1 - export MOZ_ENABLE_WAYLAND=1 - ''; - - }; - - services.kanshi = { - enable = true; - - profiles = { - profile1 = { - outputs = [ - { - criteria = "Dell Inc. DELL P2419HC H565L03"; - position = "0,0"; - } - { - criteria = "eDP-1"; - status = "disable"; - } - ]; - }; - - yoga = { - outputs = [{ - criteria = "California Institute of Technology 0x1410 Unknown"; - mode = "3072x1920@120Hz"; - scale = 1.0; - }]; - }; - - lj_setup = { - outputs = [ - { - criteria = "Samsung Electric Company C34H89x H4ZRB05512"; - mode = "3440x1440@100Hz"; - } - { - criteria = "California Institute of Technology 0x1410 Unknown"; - status = "disable"; - } - ]; - }; - - portable_monitor = { - outputs = [ - { - criteria = "California Institute of Technology 0x1410 Unknown"; - mode = "3072x1920@120Hz"; - scale = 1.0; - position = "1128,3130"; - } - { - criteria = "Avolites Ltd ARZOPA -S1 0000000000000"; - mode = "1920x1080@60Hz"; - position = "1690,2050"; - } - ]; - }; - - portable_monitor_2 = { - outputs = [ - { - criteria = "AU Optronics 0x313D Unknown"; - mode = "1920x1080@60Hz"; - scale = 1.0; - position = "1920,1080"; - } - { - criteria = "Avolites Ltd ARZOPA -S1 0000000000000"; - mode = "1920x1080@60Hz"; - position = "1920,0"; - } - ]; - }; - - lj_setup_2 = { - outputs = [ - { - criteria = "AU Optronics 0x313D Unknown"; - status = "disable"; - } - { - criteria = "Samsung Electric Company C34H89x H4ZRB05512"; - mode = "3440x1440@60Hz"; - } - ]; - }; - - hs_1 = { - outputs = [ - { - criteria = "AU Optronics 0x313D Unknown"; - #mode = "1920x1080@60Hz"; - #scale = 1.0; - #position = "0,1080"; - status = "disable"; - } - { - criteria = "Samsung Electric Company S24D330 0x00005B31"; - mode = "1920x1080@60Hz"; - position = "0,0"; - } - ]; - - }; - - hs_22 = { - outputs = [ - { - criteria = - "Philips Consumer Electronics Company PHL27M1N3200Z UK02329015881"; - mode = "1920x1080@144"; - } - { - criteria = "California Institute of Technology 0x1410 Unknown"; - status = "disable"; - } - ]; - }; - - profile7 = { - outputs = [{ - criteria = "AU Optronics 0x313D Unknown"; - mode = "1920x1080@60Hz"; - scale = 1.0; - }]; - }; - }; - }; - - services.mako = { - enable = true; - defaultTimeout = 10000; - font = "Iosevka 14"; - backgroundColor = "#191818"; - textColor = "#d2d2d2"; - borderColor = "#474343"; - borderRadius = 6; - height = 700; - width = 400; - format = '' - %s - %b''; - }; - - gtk = { - gtk2 = { - extraConfig = { - "gtk-application-prefer-dark-theme" = true; - "gtk-button-images" = true; - "gtk-cursor-theme-name" = "breeze_cursors"; - "gtk-cursor-theme-size" = 24; - "gtk-decoration-layout" = "icon:minimize,maximize,close"; - "gtk-enable-animations" = true; - "gtk-font-name" = "Noto Sans, 10"; - "gtk-icon-theme-name" = "breeze-dark"; - "gtk-menu-images" = true; - "gtk-modules" = "colorreload-gtk-module"; - "gtk-primary-button-warps-slider" = false; - "gtk-theme-name" = "Matcha-dark-azul"; - "gtk-toolbar-style" = 3; - "gtk-xft-dpi" = 147456; - }; - }; - gtk3 = { - extraConfig = { - "gtk-application-prefer-dark-theme" = true; - "gtk-button-images" = true; - "gtk-cursor-theme-name" = "breeze_cursors"; - "gtk-cursor-theme-size" = 24; - "gtk-decoration-layout" = "icon:minimize,maximize,close"; - "gtk-enable-animations" = true; - "gtk-font-name" = "Noto Sans, 10"; - "gtk-icon-theme-name" = "breeze-dark"; - "gtk-menu-images" = true; - "gtk-modules" = "colorreload-gtk-module"; - "gtk-primary-button-warps-slider" = false; - "gtk-theme-name" = "Matcha-dark-azul"; - "gtk-toolbar-style" = 3; - "gtk-xft-dpi" = 147456; - }; - }; - gtk4 = { - extraConfig = { - "gtk-application-prefer-dark-theme" = true; - "gtk-button-images" = true; - "gtk-cursor-theme-name" = "breeze_cursors"; - "gtk-cursor-theme-size" = 24; - "gtk-decoration-layout" = "icon:minimize,maximize,close"; - "gtk-enable-animations" = true; - "gtk-font-name" = "Noto Sans, 10"; - "gtk-icon-theme-name" = "breeze-dark"; - "gtk-menu-images" = true; - "gtk-modules" = "colorreload-gtk-module"; - "gtk-primary-button-warps-slider" = false; - "gtk-theme-name" = "Matcha-dark-azul"; - "gtk-toolbar-style" = 3; - "gtk-xft-dpi" = 147456; - }; - }; - }; - - programs.rofi = { - enable = true; - location = "center"; - terminal = "alacritty"; - - theme = let inherit (config.lib.formats.rasi) mkLiteral; - in { - " @import" = "catppuccin-mocha"; - # Additional theme configurations go here. - }; - - extraConfig = { - modi = "run,drun,window"; - disable-history = true; - display-drun = "  Apps "; - display-run = "  Run "; - display-window = " 﩯 Window"; - display-network = " 󰤨 Network"; - drun-display-format = "{icon} {name}"; - hide-scrollbar = true; - icon-theme = "Oranchelo"; - show-icons = true; - sidebar-mode = true; - # Additional configurations go here. - }; - }; - - programs.zathura = { - enable = true; - - options = { - font = "Iosevka 16px"; - - inputbar-fg = "#161616"; - inputbar-bg = "#909737"; - - statusbar-fg = "#161616"; - statusbar-bg = "#909737"; - - completion-fg = "#161616"; - completion-bg = "#909737"; - - completion-highlight-fg = "#909737"; - completion-highlight-bg = "#161616"; - - recolor-lightcolor = "#161616"; - recolor-darkcolor = "#ffffff"; - }; - }; - - programs.neovim = { - enable = true; - viAlias = true; - vimAlias = true; - vimdiffAlias = true; - withNodeJs = false; - withRuby = false; - withPython3 = false; - defaultEditor = true; - coc.enable = false; - - extraPackages = with pkgs; [ - # for compiling Treesitter parsers - gcc - - # debuggers - lldb # comes with lldb-vscode - - # formatters and linters - nixfmt - rustfmt - shfmt - stylua - codespell - statix - luajitPackages.luacheck - prettierd - - # LSP servers - nil - rust-analyzer - taplo - gopls - lua - shellcheck - marksman - sumneko-lua-language-server - yaml-language-server - - # this includes css-lsp, html-lsp, json-lsp, eslint-lsp - nodePackages_latest.vscode-langservers-extracted - - # other utils and plugin dependencies - src-cli - ripgrep - fd - catimg - sqlite - lemmy-help - luajitPackages.jsregexp - fzf - cargo - clippy - glow - ]; - }; - - #programs.alacritty = { - # enable = true; - - # settings = { - # window = { - # opacity = 1.0; - # padding = { - # x = 5; - # y = 5; - # }; - # }; - - # font = { - # normal = { - # family = "Iosevka"; - # style = "Regular"; - # }; - # size = 12; - # }; - - # liveConfigReload = true; - # dynamicPadding = true; - - # colors = { - # primary = { - # background = "#24273A"; - # foreground = "#CAD3F5"; - # dim_foreground = "#CAD3F5"; - # bright_foreground = "#CAD3F5"; - # }; - - # cursor = { - # text = "#24273A"; - # cursor = "#F4DBD6"; - # }; - - # vi_mode_cursor = { - # text = "#24273A"; - # cursor = "#B7BDF8"; - # }; - - # search = { - # matches = { - # foreground = "#24273A"; - # background = "#A5ADCB"; - # }; - # focused_match = { - # foreground = "#24273A"; - # background = "#A6DA95"; - # }; - # footer_bar = { - # foreground = "#24273A"; - # background = "#A5ADCB"; - # }; - # }; - - # hints = { - # start = { - # foreground = "#24273A"; - # background = "#EED49F"; - # }; - # end = { - # foreground = "#24273A"; - # background = "#A5ADCB"; - # }; - # }; - - # selection = { - # text = "#24273A"; - # background = "#F4DBD6"; - # }; - - # normal = { - # black = "#494D64"; - # red = "#ED8796"; - # green = "#A6DA95"; - # yellow = "#EED49F"; - # blue = "#8AADF4"; - # magenta = "#F5BDE6"; - # cyan = "#8BD5CA"; - # white = "#B8C0E0"; - # }; - - # bright = { - # black = "#5B6078"; - # red = "#ED8796"; - # green = "#A6DA95"; - # yellow = "#EED49F"; - # blue = "#8AADF4"; - # magenta = "#F5BDE6"; - # cyan = "#8BD5CA"; - # white = "#A5ADCB"; - # }; - - # dim = { - # black = "#494D64"; - # red = "#ED8796"; - # green = "#A6DA95"; - # yellow = "#EED49F"; - # blue = "#8AADF4"; - # magenta = "#F5BDE6"; - # cyan = "#8BD5CA"; - # white = "#B8C0E0"; - # }; - - # indexed_colors = [ - # { - # index = 16; - # color = "#F5A97F"; - # } - # { - # index = 17; - # color = "#F4DBD6"; - # } - # ]; - # }; - # }; - #}; - - programs.alacritty = { - enable = true; - - settings = { - window = { - opacity = 1.0; - padding = { - x = 5; - y = 5; - }; - }; - - font = { - normal = { - family = "Iosevka"; - style = "Regular"; - }; - size = 12; - }; - - liveConfigReload = true; - dynamicPadding = true; - - colors = { - primary = { - background = "#1c1e26"; - foreground = "#e0e0e0"; - dim_foreground = "#e0e0e0"; - bright_foreground = "#e0e0e0"; - }; - - cursor = { - text = "#1c1e26"; - cursor = "#e95678"; - }; - - vi_mode_cursor = { - text = "#1c1e26"; - cursor = "#26bbd9"; # Using Horizon Dark blue for visual distinction - }; - - search = { - matches = { - foreground = "#1c1e26"; - background = "#fab795"; # Horizon Dark yellow for contrast - }; - focused_match = { - foreground = "#1c1e26"; - background = "#29d398"; # Horizon Dark green for visibility - }; - footer_bar = { - foreground = "#1c1e26"; - background = "#fab795"; # Horizon Dark yellow for consistency - }; - }; - - hints = { - start = { - foreground = "#1c1e26"; - background = "#ee64ac"; # Horizon Dark magenta for visibility - }; - end = { - foreground = "#1c1e26"; - background = "#26bbd9"; # Horizon Dark blue for consistency - }; - }; - - selection = { - text = "#1c1e26"; - background = "#e95678"; # Horizon Dark red for visibility - }; - - normal = { - black = "#16161c"; - red = "#e95678"; - green = "#29d398"; - yellow = "#fab795"; - blue = "#26bbd9"; - magenta = "#ee64ac"; - cyan = "#59e1e3"; - white = "#d5d8da"; - }; - - bright = { - black = "#5b5858"; - red = "#ec6a88"; - green = "#3fdaa4"; - yellow = "#fbc3a7"; - blue = "#3fc4de"; - magenta = "#f075b5"; - cyan = "#6be4e6"; - white = "#d5d8da"; - }; - - dim = { - black = "#16161c"; - red = "#e95678"; - green = "#29d398"; - yellow = "#fab795"; - blue = "#26bbd9"; - magenta = "#ee64ac"; - cyan = "#59e1e3"; - white = "#d5d8da"; - }; - - indexed_colors = [ - { - index = 16; - color = "#f5a97f"; - } - { - index = 17; - color = "#f4dbd6"; - } - ]; - }; - - }; - }; - -} diff --git a/hosts/yoga/default.nix b/hosts/yoga/default.nix new file mode 100644 index 0000000..24e7fbe --- /dev/null +++ b/hosts/yoga/default.nix @@ -0,0 +1,7 @@ +{ config, pkgs, ... }: + +{ + imports = [ + ../../modules/nvidia-optimus/default.nix + ]; +} diff --git a/systems/yoga/hardware-configuration.nix b/hosts/yoga/hardware-configuration.nix similarity index 100% rename from systems/yoga/hardware-configuration.nix rename to hosts/yoga/hardware-configuration.nix diff --git a/hosts/yoga/user.nix b/hosts/yoga/user.nix new file mode 100644 index 0000000..8f54e57 --- /dev/null +++ b/hosts/yoga/user.nix @@ -0,0 +1,20 @@ +{ config, lib, inputs, pkgs, ...}: + +{ + imports = [ + ../../modules/default.nix + ]; + config.modules = { + dunst.enable = true; + hyprland.enable = true; + kitty.enable = true; + packages.enable = true; + waybar.enable = true; + zsh.enable = true; + fuzzel.enable = true; + gtk.enable = true; + direnv.enable = true; + pwnixos-packages.enable = true; + nvim.enable = false; + }; +} diff --git a/lib/default.nix b/lib/default.nix new file mode 100644 index 0000000..c9d221d --- /dev/null +++ b/lib/default.nix @@ -0,0 +1,3 @@ +inputs: { + mkSystem = import ./mkSystem.nix inputs; +} diff --git a/lib/mkSystem.nix b/lib/mkSystem.nix new file mode 100644 index 0000000..5ae4789 --- /dev/null +++ b/lib/mkSystem.nix @@ -0,0 +1,11 @@ +{ self, ... } @ inputs: name: system: inputs.nixpkgs.lib.nixosSystem ( + { + inherit system; + specialArgs = { inherit inputs self; }; + modules = [ + "${self}/hosts/${name}/system.nix" + "${self}/hosts/${name}/user.nix" + inputs.home-manager.nixosModule + ]; + } +) diff --git a/modules/default.nix b/modules/default.nix index 3766e3b..246d34f 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -1,6 +1,18 @@ +{ inputs, pkgs, config, ... }: + { - home.stateVersion = "23.11"; + home.stateVersion = "23.05"; imports = [ - ./starship + ./hyprland + ./packages + ./dunst + ./kitty + ./waybar + ./zsh + ./fuzzel + ./gtk + ./direnv + ./pwnixos-packages + ./nvim ]; } diff --git a/modules/direnv/default.nix b/modules/direnv/default.nix new file mode 100644 index 0000000..4b553ce --- /dev/null +++ b/modules/direnv/default.nix @@ -0,0 +1,15 @@ +{ pkgs, lib, config, ... }: + +with lib; +let cfg = config.modules.direnv; + +in { + options.modules.direnv = { enable = mkEnableOption "direnv"; }; + config = mkIf cfg.enable { + programs.direnv = { + enable = true; + nix-direnv.enable = true; + enableZshIntegration = true; + }; + }; + } diff --git a/modules/dunst/default.nix b/modules/dunst/default.nix new file mode 100644 index 0000000..0bd9e86 --- /dev/null +++ b/modules/dunst/default.nix @@ -0,0 +1,42 @@ +{ pkgs, lib, config, ... }: + +with lib; +let cfg = config.modules.dunst; + +in { + options.modules.dunst = { enable = mkEnableOption "dunst"; }; + config = mkIf cfg.enable { + home.packages = with pkgs; [ + dunst + ]; + + services.dunst = { + enable = true; + settings = { + global = { + origin = "top-left"; + offset = "60x12"; + separator_height = 2; + padding = 12; + horizontal_padding = 12; + text_icon_padding = 12; + frame_width = 4; + separator_color = "frame"; + idle_threshold = 120; + font = "FiraCode Nerdfont 12"; + line_height = 0; + format = "%s\n%b"; + alignment = "center"; + icon_position = "off"; + startup_notification = "false"; + corner_radius = 12; + + frame_color = "#44465c"; + background = "#303241"; + foreground = "#d9e0ee"; + timeout = 2; + }; + }; + }; + }; +} diff --git a/modules/fuzzel/default.nix b/modules/fuzzel/default.nix new file mode 100644 index 0000000..f9273cd --- /dev/null +++ b/modules/fuzzel/default.nix @@ -0,0 +1,14 @@ +{ lib, config, pkgs, ... }: + +with lib; +let cfg = config.modules.fuzzel; + +in { + options.modules.fuzzel = {enable = mkEnableOption "fuzzel"; }; + config = mkIf cfg.enable { + home.packages = with pkgs; [ + fuzzel clipman networkmanager_dmenu + ]; + home.file.".config/fuzzel/fuzzel.ini".source = ./fuzzel.ini; + }; + } diff --git a/modules/fuzzel/fuzzel.ini b/modules/fuzzel/fuzzel.ini new file mode 100644 index 0000000..cc61577 --- /dev/null +++ b/modules/fuzzel/fuzzel.ini @@ -0,0 +1,18 @@ +dpi-aware=no +width=25 +font=FiraCode Nerd Font:style=bold:size=12 +line-height=30 +fields=name,generic,comment,categories,filename,keywords +terminal=kitty +prompt=" " +layer=overlay +[colors] +background=313244cc +border=cba6f7ff +selection=94e2d5ff + +[border] +radius=20 + +[dmenu] +exit-immediately-if-empty=yes diff --git a/modules/gtk/default.nix b/modules/gtk/default.nix new file mode 100644 index 0000000..3e75d82 --- /dev/null +++ b/modules/gtk/default.nix @@ -0,0 +1,39 @@ +{ lib, config, pkgs, ... }: + +with lib; +let cfg = config.modules.gtk; + +in { + options.modules.gtk = { enable = mkEnableOption "gtk"; }; + config = mkIf cfg.enable { + home.packages = with pkgs; [ + dconf gtk-engine-murrine gnome.gnome-themes-extra + ]; + home.sessionVariables.GTK_THEME = "Catppuccin-Macchiato-Compact-Mauve-Dark"; + gtk = { + enable = true; + theme = { + name = "Catppuccin-Macchiato-Compact-Mauve-Dark"; + package = pkgs.catppuccin-gtk.override { + accents = [ "mauve" ]; + size = "compact"; + tweaks = [ ]; + variant = "macchiato"; + }; + }; + cursorTheme = { + name = "Catppuccin-Macchiato-Mauve-Cursors"; + package = pkgs.catppuccin-cursors.macchiatoMauve; + }; + iconTheme = { + name = "Papirus-Dark"; + package = pkgs.catppuccin-papirus-folders; + }; + }; + home.pointerCursor = { + gtk.enable = true; + package = pkgs.catppuccin-cursors.macchiatoMauve; + name = "Catppuccin-Macchiato-Mauve-Cursors"; + }; + }; +} diff --git a/modules/hyprland/default.nix b/modules/hyprland/default.nix new file mode 100644 index 0000000..7bdeddb --- /dev/null +++ b/modules/hyprland/default.nix @@ -0,0 +1,18 @@ +{ lib, config, pkgs, ... }: + +with lib; +let cfg = config.modules.hyprland; + +in { + options.modules.hyprland = { enable = mkEnableOption "hyprland"; }; + config = mkIf cfg.enable { + home.packages = with pkgs; [ + hyprpaper hyprland wl-clipboard hyprland-protocols wlogout swayidle + ]; + + home.file.".config/hypr/hyprland.conf".source = ./hyprland.conf; + home.file.".config/hypr/hyprpaper.conf".source = ./hyprpaper.conf; + home.file.".config/hypr/wallpaper.png".source = ../../pics/wallpaper.png; + home.file.".config/hypr/PwNixOS-Wallpaper.png".source = ../../pics/PwNixOS-Wallpaper.png; + }; +} diff --git a/modules/hyprland/hyprland.conf b/modules/hyprland/hyprland.conf new file mode 100644 index 0000000..33989cf --- /dev/null +++ b/modules/hyprland/hyprland.conf @@ -0,0 +1,131 @@ +monitor=eDP-1,1920x1080@60,0x0,1 +monitor=eDP-1,addreserved,0,0,0,0 +monitor=HDMI-A-4,1920x1080@165,1920x0,1 +monitor=HDMI-A-4,addreserved,0,0,0,0 +monitor=,1920x1080@60,auto,1 +monitor=,addreserved,0,0,0,0 + +#exec-once=wlsunset -l -23 -L -46 +exec-once=dunst +exec-once=waybar +exec-once=hyprpaper +exec-once=dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP GTK_THEME +exec-once=systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP GTK_THEME +exec-once=swayidle -w timeout 600 'hyprctl dispatch dpms off' resume 'hyprctl dispatch dpms on' before-sleep 'gtklock -i -d -b ~/.config/hypr/PwNixOS-Wallpaper.png' + +misc { + disable_hyprland_logo=true + disable_splash_rendering=true +} + + +input { + kb_layout=us,es # Spanish layout + follow_mouse=1 + kb_options = grp:win_space_toggle # WIN + SPACE +} +# Moonlander Mark I Keyboard configuration +device:zsa-technology-labs-moonlander-mark-i { + kb_layout=us # US International layout + kb_variant=intl +} + +general { + sensitivity=1 + gaps_in=6 + gaps_out=12 + border_size=4 + col.active_border=0xffb072d1 + col.inactive_border=0xff292a37 +} + +decoration { + rounding=8 + blur { + enabled = true + } + drop_shadow=0 + shadow_range=60 + col.shadow=0x66000000 +} + +animations { + enabled=1 + animation=windowsIn,1,4,default + animation=windowsMove,1,2,default + animation=windowsOut,1,4,default,slide + animation=border,1,5,default + animation=fade,1,5,default + animation=workspaces,0,1,default +} + +dwindle { + pseudotile=0 # enable pseudotiling on dwindle +} + +# example window rules +# for windows named/classed as abc and xyz +windowrule=float,move 0 0,pqiv +windowrule=float,foot-notes +#windowrule=size 420 69,abc +#windowrule=tile,xyz +#windowrule=float,abc +#windowrule=pseudo,abc +#windowrule=monitor 0,xyz + +# Basic binds +bind=SUPER,Return,exec,kitty +bind=SUPER,Q,killactive, +bind=SUPER,V,togglefloating, +bind=SUPER,D,exec,fuzzel +bind=SUPERSHIFT,S,exec,grimblast copy area +bind=SUPER,F,fullscreen,0 +bind=SUPER,X,exec,wlogout +bind=SUPER,L,exec,gtklock -i -d -b ~/.config/hypr/PwNixOS-Wallpaper.png + +bind=SUPER,left,movefocus,l +bind=SUPER,right,movefocus,r +bind=SUPER,up,movefocus,u +bind=SUPER,down,movefocus,d + +bind=SUPERSHIFT,left,movewindow,l +bind=SUPERSHIFT,right,movewindow,r +bind=SUPERSHIFT,up,movewindow,u +bind=SUPERSHIFT,down,movewindow,d + +bind=SUPERCTRL,right,resizeactive,10 0 +bind=SUPERCTRL,left,resizeactive,-10 0 +bind=SUPERCTRL,up,resizeactive,0 -10 +bind=SUPERCTRL,down,resizeactive,0 10 + + +bind=SUPER,1,workspace,1 +bind=SUPER,2,workspace,2 +bind=SUPER,3,workspace,3 +bind=SUPER,4,workspace,4 +bind=SUPER,5,workspace,5 +bind=SUPER,6,workspace,6 +bind=SUPER,7,workspace,7 +bind=SUPER,8,workspace,8 +bind=SUPER,9,workspace,9 +bind=SUPER,0,workspace,0 + +bind=SUPERSHIFT,1,movetoworkspacesilent,1 +bind=SUPERSHIFT,2,movetoworkspacesilent,2 +bind=SUPERSHIFT,3,movetoworkspacesilent,3 +bind=SUPERSHIFT,4,movetoworkspacesilent,4 +bind=SUPERSHIFT,5,movetoworkspacesilent,5 +bind=SUPERSHIFT,6,movetoworkspacesilent,6 +bind=SUPERSHIFT,7,movetoworkspacesilent,7 +bind=SUPERSHIFT,8,movetoworkspacesilent,8 +bind=SUPERSHIFT,9,movetoworkspacesilent,9 +bind=SUPERSHIFT,0,movetoworkspacesilent,0 + +bindm = SUPER, mouse:272, movewindow +bindm = SUPER, mouse:273, resizewindow + +bind=,XF86MonBrightnessUp,exec,brightnessctl set +5% +bind=,XF86MonBrightnessDown,exec,brightnessctl set 5%- +bind=,XF86AudioRaiseVolume,exec,amixer -D pipewire sset Master 5%+ +bind=,XF86AudioLowerVolume,exec,amixer -D pipewire sset Master 5%- +bind=,XF86AudioMute,exec,amixer -D pipewire sset Master 1+ toggle diff --git a/modules/hyprland/hyprpaper.conf b/modules/hyprland/hyprpaper.conf new file mode 100644 index 0000000..4f8ba4f --- /dev/null +++ b/modules/hyprland/hyprpaper.conf @@ -0,0 +1,4 @@ +preload = ~/.config/hypr/PwNixOS-Wallpaper.png +preload = ~/.config/hypr/wallpaper.png +wallpaper = ,~/.config/hypr/PwNixOS-Wallpaper.png +splash = false diff --git a/modules/intel/default.nix b/modules/intel/default.nix new file mode 100644 index 0000000..f748851 --- /dev/null +++ b/modules/intel/default.nix @@ -0,0 +1,25 @@ +{ + config, + pkgs, + lib, + ... +}: { + + environment.systemPackages = with pkgs; [ + vulkan-loader + vulkan-validation-layers + vulkan-tools + libva-utils + ]; + + hardware.opengl = { + enable = true; + extraPackages = with pkgs; [ + intel-media-driver + vaapiIntel + vaapiVdpau + libvdpau-va-gl + intel-compute-runtime + ]; + }; + } diff --git a/modules/kitty/default.nix b/modules/kitty/default.nix new file mode 100644 index 0000000..961e5fc --- /dev/null +++ b/modules/kitty/default.nix @@ -0,0 +1,15 @@ +{ pkgs, lib, config, ... }: + +with lib; +let cfg = config.modules.kitty; + +in { + options.modules.kitty = { enable = mkEnableOption "kitty"; }; + config = mkIf cfg.enable { + home.packages = with pkgs; [ + kitty + ]; + + home.file.".config/kitty/kitty.conf".source = ./kitty.conf; + }; + } diff --git a/modules/kitty/kitty.conf b/modules/kitty/kitty.conf new file mode 100644 index 0000000..2f76d13 --- /dev/null +++ b/modules/kitty/kitty.conf @@ -0,0 +1,122 @@ +# vim:ft=kitty + +## name: Catppuccin Kitty Mocha +## author: Catppuccin Org +## license: MIT +## upstream: https://github.com/catppuccin/kitty/blob/main/mocha.conf +## blurb: Soothing pastel theme for the high-spirited! + + + +# The basic colors +foreground #CDD6F4 +background #1E1E2E +selection_foreground #1E1E2E +selection_background #F5E0DC + +# Cursor colors +cursor #F5E0DC +cursor_text_color #1E1E2E + +# URL underline color when hovering with mouse +url_color #F5E0DC + +# Kitty window border colors +active_border_color #B4BEFE +inactive_border_color #6C7086 +bell_border_color #F9E2AF + +# OS Window titlebar colors +wayland_titlebar_color system +macos_titlebar_color system + +# Tab bar colors +active_tab_foreground #11111B +active_tab_background #CBA6F7 +inactive_tab_foreground #CDD6F4 +inactive_tab_background #181825 +tab_bar_background #11111B + +# Colors for marks (marked text in the terminal) +mark1_foreground #1E1E2E +mark1_background #B4BEFE +mark2_foreground #1E1E2E +mark2_background #CBA6F7 +mark3_foreground #1E1E2E +mark3_background #74C7EC + +# The 16 terminal colors + +# black +color0 #45475A +color8 #585B70 + +# red +color1 #F38BA8 +color9 #F38BA8 + +# green +color2 #A6E3A1 +color10 #A6E3A1 + +# yellow +color3 #F9E2AF +color11 #F9E2AF + +# blue +color4 #89B4FA +color12 #89B4FA + +# magenta +color5 #F5C2E7 +color13 #F5C2E7 + +# cyan +color6 #94E2D5 +color14 #94E2D5 + +# white +color7 #BAC2DE +color15 #A6ADC8 + +# Configuration + +font_family FiraCode-Nerd-Font-Reg + +font-size 13 + +disable_ligatures never + +url_style curly + +map ctrl+left neighboring_window left +map ctrl+right neighboring_window right +map ctrl+up neighboring_window up +map ctrl+down neighboring_window down + +map f1 copy_to_buffer a +map f2 paste_from_buffer a +map f3 copy_to_buffer b +map f4 paste_from_buffer b + +cursor_shape beam +cursor_beam_thickness 1.8 + +mouse_hide_wait 3.0 +detect_urls yes + +repaint_delay 10 +input_delay 3 +sync_to_monitor yes + +map ctrl+shift+z toggle_layout stack +tab_bar_style powerline + +tab_bar_margin_color black + +map ctrl+shift+enter new_window_with_cwd +map ctrl+shift+t new_tab_with_cwd + +background_opacity 0.8 + +shell zsh diff --git a/modules/neo4j/default.nix b/modules/neo4j/default.nix new file mode 100644 index 0000000..9d823e5 --- /dev/null +++ b/modules/neo4j/default.nix @@ -0,0 +1,19 @@ +{ + pkgs, + lib, + config, + ... +}: + +{ + services.neo4j.enable = true; + services.neo4j.bolt.listenAddress = "127.0.0.1:7687"; # Local Addresses for http and bolt + services.neo4j.http.listenAddress = "127.0.0.1:7474"; + services.neo4j.http.enable = true; + services.neo4j.https.enable = false; + services.neo4j.bolt.enable = true; + services.neo4j.bolt.tlsLevel = "DISABLED"; + + # This is so that the service is disabled at startup + systemd.services.neo4j.wantedBy = lib.mkForce []; +} diff --git a/modules/nvidia-optimus/default.nix b/modules/nvidia-optimus/default.nix new file mode 100644 index 0000000..8f772d8 --- /dev/null +++ b/modules/nvidia-optimus/default.nix @@ -0,0 +1,24 @@ +{ + config, + pkgs, + lib, + ... +}: { + + environment.systemPackages = with pkgs; [ + vulkan-loader + vulkan-validation-layers + vulkan-tools + libva-utils + cudatoolkit + ]; + + hardware.nvidia.nvidiaSettings = true; + hardware.nvidia.modesetting.enable = true; + hardware.nvidia.nvidiaPersistenced = true; + hardware.nvidia.powerManagement = { + enable = false; + finegrained = false; + }; + +} diff --git a/modules/nvim/config/.stylua.toml b/modules/nvim/config/.stylua.toml new file mode 100644 index 0000000..ecb6dca --- /dev/null +++ b/modules/nvim/config/.stylua.toml @@ -0,0 +1,6 @@ +column_width = 120 +line_endings = "Unix" +indent_type = "Spaces" +indent_width = 2 +quote_style = "AutoPreferDouble" +call_parentheses = "None" diff --git a/modules/nvim/config/LICENSE b/modules/nvim/config/LICENSE new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/modules/nvim/config/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/modules/nvim/config/init.lua b/modules/nvim/config/init.lua new file mode 100644 index 0000000..21f0b6f --- /dev/null +++ b/modules/nvim/config/init.lua @@ -0,0 +1,21 @@ +require "core" + +local custom_init_path = vim.api.nvim_get_runtime_file("lua/custom/init.lua", false)[1] + +if custom_init_path then + dofile(custom_init_path) +end + +require("core.utils").load_mappings() + +local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim" + +-- bootstrap lazy.nvim! +if not vim.loop.fs_stat(lazypath) then + require("core.bootstrap").gen_chadrc_template() + require("core.bootstrap").lazy(lazypath) +end + +dofile(vim.g.base46_cache .. "defaults") +vim.opt.rtp:prepend(lazypath) +require "plugins" diff --git a/modules/nvim/config/lazy-lock.json b/modules/nvim/config/lazy-lock.json new file mode 100644 index 0000000..f1ba643 --- /dev/null +++ b/modules/nvim/config/lazy-lock.json @@ -0,0 +1,45 @@ +{ + "Comment.nvim": { "branch": "master", "commit": "0236521ea582747b58869cb72f70ccfa967d2e89" }, + "LuaSnip": { "branch": "master", "commit": "2dbef19461198630b3d7c39f414d09fb07d1fdd2" }, + "base46": { "branch": "v2.0", "commit": "3f2b658cbd6650ddaf2bae3233e143a41ca25b1a" }, + "better-escape.nvim": { "branch": "master", "commit": "7e86edafb8c7e73699e0320f225464a298b96d12" }, + "cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" }, + "cmp-cmdline": { "branch": "main", "commit": "8ee981b4a91f536f52add291594e89fb6645e451" }, + "cmp-nvim-lsp": { "branch": "main", "commit": "5af77f54de1b16c34b23cba810150689a3a90312" }, + "cmp-nvim-lua": { "branch": "main", "commit": "f12408bdb54c39c23e67cab726264c10db33ada8" }, + "cmp-path": { "branch": "main", "commit": "91ff86cd9c29299a64f968ebb45846c485725f23" }, + "cmp_luasnip": { "branch": "master", "commit": "05a9ab28b53f71d1aece421ef32fee2cb857a843" }, + "friendly-snippets": { "branch": "main", "commit": "b8fae73a479ae0a1c54f5c98fa687ae8a0addc53" }, + "gitsigns.nvim": { "branch": "main", "commit": "2c2463dbd82eddd7dbab881c3a62cfbfbe3c67ae" }, + "gopher.nvim": { "branch": "main", "commit": "ac27f4b6794c872140fb205313d79ab166892fe9" }, + "hop.nvim": { "branch": "v2", "commit": "90db1b2c61b820e230599a04fedcd2679e64bd07" }, + "indent-blankline.nvim": { "branch": "master", "commit": "b7aa0aed55887edfaece23f7b46ab22232fc8741" }, + "lazy.nvim": { "branch": "main", "commit": "28126922c9b54e35a192ac415788f202c3944c9f" }, + "mason-lspconfig.nvim": { "branch": "main", "commit": "0954d7730e749d606ddf8d7ae8846848be435d53" }, + "mason.nvim": { "branch": "main", "commit": "c43eeb5614a09dc17c03a7fb49de2e05de203924" }, + "neodev.nvim": { "branch": "main", "commit": "0ee95ecefc8ea45898a0383364f736e098c8703f" }, + "null-ls.nvim": { "branch": "main", "commit": "0010ea927ab7c09ef0ce9bf28c2b573fc302f5a7" }, + "nvim-autopairs": { "branch": "master", "commit": "096d0baecc34f6c5d8a6dd25851e9d5ad338209b" }, + "nvim-cmp": { "branch": "main", "commit": "04e0ca376d6abdbfc8b52180f8ea236cbfddf782" }, + "nvim-colorizer.lua": { "branch": "master", "commit": "85855b38011114929f4058efc97af1059ab3e41d" }, + "nvim-dap": { "branch": "master", "commit": "780fd4dd06b0744b235a520d71660c45279d9447" }, + "nvim-dap-go": { "branch": "main", "commit": "a5cc8dcad43f0732585d4793deb02a25c4afb766" }, + "nvim-dap-python": { "branch": "master", "commit": "f5b6f3a90aae0284b61fb3565e575267c19a16e6" }, + "nvim-dap-ui": { "branch": "master", "commit": "d845ebd798ad1cf30aa4abd4c4eff795cdcfdd4f" }, + "nvim-lsp-ts-utils": { "branch": "main", "commit": "0a6a16ef292c9b61eac6dad00d52666c7f84b0e7" }, + "nvim-lspconfig": { "branch": "master", "commit": "1bc83418927003552505ec66fa5d6cffae953f6a" }, + "nvim-navic": { "branch": "master", "commit": "8649f694d3e76ee10c19255dece6411c29206a54" }, + "nvim-tree.lua": { "branch": "master", "commit": "8cbb1db8e90b62fc56f379992e622e9f919792ce" }, + "nvim-treehopper": { "branch": "master", "commit": "5a28bff46c05d28bdb4bcaef67e046eb915a9390" }, + "nvim-treesitter": { "branch": "master", "commit": "f197a15b0d1e8d555263af20add51450e5aaa1f0" }, + "nvim-web-devicons": { "branch": "master", "commit": "313d9e7193354c5de7cdb1724f9e2d3f442780b0" }, + "plenary.nvim": { "branch": "master", "commit": "4f71c0c4a196ceb656c824a70792f3df3ce6bb6d" }, + "schemastore.nvim": { "branch": "main", "commit": "898a19cb54f310dda7cdeedf3d75aeeffcf19136" }, + "symbols-outline.nvim": { "branch": "master", "commit": "564ee65dfc9024bdde73a6621820866987cbb256" }, + "syntax-tree-surfer": { "branch": "master", "commit": "732ea6d0f868bcccd2f526be73afa46997d5a2fb" }, + "telescope.nvim": { "branch": "master", "commit": "236083884cfe6c874e03e6cb4e7cb08809c1333c" }, + "terminal.nvim": { "branch": "master", "commit": "764b7c137512bcfba2e45cf3e25c08a9f4d3b733" }, + "trouble.nvim": { "branch": "main", "commit": "f1168feada93c0154ede4d1fe9183bf69bac54ea" }, + "ui": { "branch": "v2.0", "commit": "1737a2a98e18b635480756e817564b60ff31fc53" }, + "which-key.nvim": { "branch": "main", "commit": "4433e5ec9a507e5097571ed55c02ea9658fb268a" } +} \ No newline at end of file diff --git a/modules/nvim/config/lua/core/bootstrap.lua b/modules/nvim/config/lua/core/bootstrap.lua new file mode 100644 index 0000000..a5d5c68 --- /dev/null +++ b/modules/nvim/config/lua/core/bootstrap.lua @@ -0,0 +1,62 @@ +local M = {} +local fn = vim.fn + +M.echo = function(str) + vim.cmd "redraw" + vim.api.nvim_echo({ { str, "Bold" } }, true, {}) +end + +local function shell_call(args) + local output = fn.system(args) + assert(vim.v.shell_error == 0, "External call failed with error code: " .. vim.v.shell_error .. "\n" .. output) +end + +M.lazy = function(install_path) + ------------- base46 --------------- + local lazy_path = fn.stdpath "data" .. "/lazy/base46" + + M.echo " Compiling base46 theme to bytecode ..." + + local base46_repo = "https://github.com/NvChad/base46" + shell_call { "git", "clone", "--depth", "1", "-b", "v2.0", base46_repo, lazy_path } + vim.opt.rtp:prepend(lazy_path) + + require("base46").compile() + + --------- lazy.nvim --------------- + M.echo " Installing lazy.nvim & plugins ..." + local repo = "https://github.com/folke/lazy.nvim.git" + shell_call { "git", "clone", "--filter=blob:none", "--branch=stable", repo, install_path } + vim.opt.rtp:prepend(install_path) + + -- install plugins + require "plugins" + + -- mason packages & show post_bootstrap screen + require "nvchad.post_install"() +end + +M.gen_chadrc_template = function() + local path = fn.stdpath "config" .. "/lua/custom" + + if fn.isdirectory(path) ~= 1 then + local input = vim.env.NVCHAD_EXAMPLE_CONFIG or fn.input "Do you want to install example custom config? (y/N): " + + if input:lower() == "y" then + M.echo "Cloning example custom config repo..." + shell_call { "git", "clone", "--depth", "1", "https://github.com/NvChad/example_config", path } + fn.delete(path .. "/.git", "rf") + else + -- use very minimal chadrc + fn.mkdir(path, "p") + + local file = io.open(path .. "/chadrc.lua", "w") + if file then + file:write "---@type ChadrcConfig\nlocal M = {}\n\nM.ui = { theme = 'onedark' }\n\nreturn M" + file:close() + end + end + end +end + +return M diff --git a/modules/nvim/config/lua/core/default_config.lua b/modules/nvim/config/lua/core/default_config.lua new file mode 100644 index 0000000..639916a --- /dev/null +++ b/modules/nvim/config/lua/core/default_config.lua @@ -0,0 +1,92 @@ +local M = {} + +M.options = { + nvchad_branch = "v2.0", +} + +M.ui = { + ------------------------------- base46 ------------------------------------- + -- hl = highlights + hl_add = {}, + hl_override = {}, + changed_themes = {}, + theme_toggle = { "onedark", "one_light" }, + theme = "onedark", -- default theme + transparency = false, + lsp_semantic_tokens = false, -- needs nvim v0.9, just adds highlight groups for lsp semantic tokens + + -- https://github.com/NvChad/base46/tree/v2.0/lua/base46/extended_integrations + extended_integrations = {}, -- these aren't compiled by default, ex: "alpha", "notify" + + -- cmp themeing + cmp = { + icons = true, + lspkind_text = true, + style = "default", -- default/flat_light/flat_dark/atom/atom_colored + border_color = "grey_fg", -- only applicable for "default" style, use color names from base30 variables + selected_item_bg = "colored", -- colored / simple + }, + + telescope = { style = "borderless" }, -- borderless / bordered + + ------------------------------- nvchad_ui modules ----------------------------- + statusline = { + theme = "default", -- default/vscode/vscode_colored/minimal + -- default/round/block/arrow separators work only for default statusline theme + -- round and block will work for minimal theme only + separator_style = "default", + overriden_modules = nil, + }, + + -- lazyload it when there are 1+ buffers + tabufline = { + show_numbers = false, + enabled = true, + lazyload = true, + overriden_modules = nil, + }, + + -- nvdash (dashboard) + nvdash = { + load_on_startup = false, + + header = { + " ▄ ▄ ", + " ▄ ▄▄▄ ▄ ▄▄▄ ▄ ▄ ", + " █ ▄ █▄█ ▄▄▄ █ █▄█ █ █ ", + " ▄▄ █▄█▄▄▄█ █▄█▄█▄▄█▄▄█ █ ", + " ▄ █▄▄█ ▄ ▄▄ ▄█ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ", + " █▄▄▄▄ ▄▄▄ █ ▄ ▄▄▄ ▄ ▄▄▄ ▄ ▄ █ ▄", + "▄ █ █▄█ █▄█ █ █ █▄█ █ █▄█ ▄▄▄ █ █", + "█▄█ ▄ █▄▄█▄▄█ █ ▄▄█ █ ▄ █ █▄█▄█ █", + " █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█ █▄█▄▄▄█ ", + }, + + buttons = { + { " Find File", "Spc f f", "Telescope find_files" }, + { "󰈚 Recent Files", "Spc f o", "Telescope oldfiles" }, + { "󰈭 Find Word", "Spc f w", "Telescope live_grep" }, + { " Bookmarks", "Spc m a", "Telescope marks" }, + { " Themes", "Spc t h", "Telescope themes" }, + { " Mappings", "Spc c h", "NvCheatsheet" }, + }, + }, + + cheatsheet = { theme = "grid" }, -- simple/grid + + lsp = { + -- show function signatures i.e args as you type + signature = { + disabled = false, + silent = true, -- silences 'no signature help available' message from appearing + }, + }, +} + +M.plugins = "" -- path i.e "custom.plugins", so make custom/plugins.lua file + +M.lazy_nvim = require "plugins.configs.lazy_nvim" -- config for lazy.nvim startup options + +M.mappings = require "core.mappings" + +return M diff --git a/modules/nvim/config/lua/core/init.lua b/modules/nvim/config/lua/core/init.lua new file mode 100644 index 0000000..8d19174 --- /dev/null +++ b/modules/nvim/config/lua/core/init.lua @@ -0,0 +1,138 @@ +local opt = vim.opt +local g = vim.g +local config = require("core.utils").load_config() + +-------------------------------------- globals ----------------------------------------- +g.nvchad_theme = config.ui.theme +g.base46_cache = vim.fn.stdpath "data" .. "/nvchad/base46/" +g.toggle_theme_icon = "  " +g.transparency = config.ui.transparency + +-------------------------------------- options ------------------------------------------ +opt.laststatus = 3 -- global statusline +opt.showmode = false + +opt.clipboard = "unnamedplus" +opt.cursorline = true + +-- Indenting +opt.expandtab = true +opt.shiftwidth = 2 +opt.smartindent = true +opt.tabstop = 2 +opt.softtabstop = 2 + +opt.fillchars = { eob = " " } +opt.ignorecase = true +opt.smartcase = true +opt.mouse = "a" + +-- Numbers +opt.number = true +opt.numberwidth = 2 +opt.ruler = false + +-- disable nvim intro +opt.shortmess:append "sI" + +opt.signcolumn = "yes" +opt.splitbelow = true +opt.splitright = true +opt.termguicolors = true +opt.timeoutlen = 400 +opt.undofile = true + +-- interval for writing swap file to disk, also used by gitsigns +opt.updatetime = 250 + +-- go to previous/next line with h,l,left arrow and right arrow +-- when cursor reaches end/beginning of line +opt.whichwrap:append "<>[]hl" + +g.mapleader = " " + +-- disable some default providers +for _, provider in ipairs { "node", "perl", "python3", "ruby" } do + vim.g["loaded_" .. provider .. "_provider"] = 0 +end + +-- add binaries installed by mason.nvim to path +local is_windows = vim.loop.os_uname().sysname == "Windows_NT" +vim.env.PATH = vim.fn.stdpath "data" .. "/mason/bin" .. (is_windows and ";" or ":") .. vim.env.PATH + +-------------------------------------- autocmds ------------------------------------------ +local autocmd = vim.api.nvim_create_autocmd + +-- dont list quickfix buffers +autocmd("FileType", { + pattern = "qf", + callback = function() + vim.opt_local.buflisted = false + end, +}) + +-- reload some chadrc options on-save +autocmd("BufWritePost", { + pattern = vim.tbl_map(function(path) + return vim.fs.normalize(vim.loop.fs_realpath(path)) + end, vim.fn.glob(vim.fn.stdpath "config" .. "/lua/custom/**/*.lua", true, true, true)), + group = vim.api.nvim_create_augroup("ReloadNvChad", {}), + + callback = function(opts) + local fp = vim.fn.fnamemodify(vim.fs.normalize(vim.api.nvim_buf_get_name(opts.buf)), ":r") --[[@as string]] + local app_name = vim.env.NVIM_APPNAME and vim.env.NVIM_APPNAME or "nvim" + local module = string.gsub(fp, "^.*/" .. app_name .. "/lua/", ""):gsub("/", ".") + + require("plenary.reload").reload_module "base46" + require("plenary.reload").reload_module(module) + require("plenary.reload").reload_module "custom.chadrc" + + config = require("core.utils").load_config() + + vim.g.nvchad_theme = config.ui.theme + vim.g.transparency = config.ui.transparency + + -- statusline + require("plenary.reload").reload_module("nvchad.statusline." .. config.ui.statusline.theme) + vim.opt.statusline = "%!v:lua.require('nvchad.statusline." .. config.ui.statusline.theme .. "').run()" + + -- tabufline + if config.ui.tabufline.enabled then + require("plenary.reload").reload_module "nvchad.tabufline.modules" + vim.opt.tabline = "%!v:lua.require('nvchad.tabufline.modules').run()" + end + + require("base46").load_all_highlights() + -- vim.cmd("redraw!") + end, +}) + +-- user event that loads after UIEnter + only if file buf is there +vim.api.nvim_create_autocmd({ "UIEnter", "BufReadPost", "BufNewFile" }, { + group = vim.api.nvim_create_augroup("NvFilePost", { clear = true }), + callback = function(args) + local file = vim.api.nvim_buf_get_name(args.buf) + local buftype = vim.api.nvim_buf_get_option(args.buf, "buftype") + + if not vim.g.ui_entered and args.event == "UIEnter" then + vim.g.ui_entered = true + end + + if file ~= "" and buftype ~= "nofile" and vim.g.ui_entered then + vim.api.nvim_exec_autocmds("User", { pattern = "FilePost", modeline = false }) + vim.api.nvim_del_augroup_by_name "NvFilePost" + + vim.schedule(function() + vim.api.nvim_exec_autocmds("FileType", {}) + require("editorconfig").config(args.buf) + end, 0) + end + end, +}) + +-------------------------------------- commands ------------------------------------------ +local new_cmd = vim.api.nvim_create_user_command + +new_cmd("NvChadUpdate", function() + require "nvchad.updater"() +end, {}) diff --git a/modules/nvim/config/lua/core/mappings.lua b/modules/nvim/config/lua/core/mappings.lua new file mode 100644 index 0000000..0a652a7 --- /dev/null +++ b/modules/nvim/config/lua/core/mappings.lua @@ -0,0 +1,468 @@ +-- n, v, i, t = mode names + +local M = {} + +M.general = { + i = { + -- go to beginning and end + [""] = { "^i", "Beginning of line" }, + [""] = { "", "End of line" }, + + -- navigate within insert mode + [""] = { "", "Move left" }, + [""] = { "", "Move right" }, + [""] = { "", "Move down" }, + [""] = { "", "Move up" }, + }, + + n = { + [""] = { " noh ", "Clear highlights" }, + -- switch between windows + [""] = { "h", "Window left" }, + [""] = { "l", "Window right" }, + [""] = { "j", "Window down" }, + [""] = { "k", "Window up" }, + + -- save + [""] = { " w ", "Save file" }, + + -- Copy all + [""] = { " %y+ ", "Copy whole file" }, + + -- line numbers + ["n"] = { " set nu! ", "Toggle line number" }, + ["rn"] = { " set rnu! ", "Toggle relative number" }, + + -- Allow moving the cursor through wrapped lines with j, k, and + -- http://www.reddit.com/r/vim/comments/2k4cbr/problem_with_gj_and_gk/ + -- empty mode is same as using :map + -- also don't use g[j|k] when in operator pending mode, so it doesn't alter d, y or c behaviour + ["j"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "Move down", opts = { expr = true } }, + ["k"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "Move up", opts = { expr = true } }, + [""] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "Move up", opts = { expr = true } }, + [""] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "Move down", opts = { expr = true } }, + + -- new buffer + ["b"] = { " enew ", "New buffer" }, + ["ch"] = { " NvCheatsheet ", "Mapping cheatsheet" }, + + ["fm"] = { + function() + vim.lsp.buf.format { async = true } + end, + "LSP formatting", + }, + }, + + t = { + [""] = { vim.api.nvim_replace_termcodes("", true, true, true), "Escape terminal mode" }, + }, + + v = { + [""] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "Move up", opts = { expr = true } }, + [""] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "Move down", opts = { expr = true } }, + ["<"] = { ""] = { ">gv", "Indent line" }, + }, + + x = { + ["j"] = { 'v:count || mode(1)[0:1] == "no" ? "j" : "gj"', "Move down", opts = { expr = true } }, + ["k"] = { 'v:count || mode(1)[0:1] == "no" ? "k" : "gk"', "Move up", opts = { expr = true } }, + -- Don't copy the replaced text after pasting in visual mode + -- https://vim.fandom.com/wiki/Replace_a_word_with_yanked_text#Alternative_mapping_for_paste + ["p"] = { 'p:let @+=@0:let @"=@0', "Dont copy replaced text", opts = { silent = true } }, + }, +} + +M.tabufline = { + plugin = true, + + n = { + -- cycle through buffers + [""] = { + function() + require("nvchad.tabufline").tabuflineNext() + end, + "Goto next buffer", + }, + + [""] = { + function() + require("nvchad.tabufline").tabuflinePrev() + end, + "Goto prev buffer", + }, + + -- close buffer + hide terminal buffer + ["x"] = { + function() + require("nvchad.tabufline").close_buffer() + end, + "Close buffer", + }, + }, +} + +M.comment = { + plugin = true, + + -- toggle comment in both modes + n = { + ["/"] = { + function() + require("Comment.api").toggle.linewise.current() + end, + "Toggle comment", + }, + }, + + v = { + ["/"] = { + "lua require('Comment.api').toggle.linewise(vim.fn.visualmode())", + "Toggle comment", + }, + }, +} + +M.lspconfig = { + plugin = true, + + -- See ` :help vim.lsp.*` for documentation on any of the below functions + + n = { + ["gD"] = { + function() + vim.lsp.buf.declaration() + end, + "LSP declaration", + }, + + ["gd"] = { + function() + vim.lsp.buf.definition() + end, + "LSP definition", + }, + + ["K"] = { + function() + vim.lsp.buf.hover() + end, + "LSP hover", + }, + + ["gi"] = { + function() + vim.lsp.buf.implementation() + end, + "LSP implementation", + }, + + ["ls"] = { + function() + vim.lsp.buf.signature_help() + end, + "LSP signature help", + }, + + ["D"] = { + function() + vim.lsp.buf.type_definition() + end, + "LSP definition type", + }, + + ["ra"] = { + function() + require("nvchad.renamer").open() + end, + "LSP rename", + }, + + ["ca"] = { + function() + vim.lsp.buf.code_action() + end, + "LSP code action", + }, + + ["gr"] = { + function() + vim.lsp.buf.references() + end, + "LSP references", + }, + + ["lf"] = { + function() + vim.diagnostic.open_float { border = "rounded" } + end, + "Floating diagnostic", + }, + + ["[d"] = { + function() + vim.diagnostic.goto_prev { float = { border = "rounded" } } + end, + "Goto prev", + }, + + ["]d"] = { + function() + vim.diagnostic.goto_next { float = { border = "rounded" } } + end, + "Goto next", + }, + + ["q"] = { + function() + vim.diagnostic.setloclist() + end, + "Diagnostic setloclist", + }, + + ["wa"] = { + function() + vim.lsp.buf.add_workspace_folder() + end, + "Add workspace folder", + }, + + ["wr"] = { + function() + vim.lsp.buf.remove_workspace_folder() + end, + "Remove workspace folder", + }, + + ["wl"] = { + function() + print(vim.inspect(vim.lsp.buf.list_workspace_folders())) + end, + "List workspace folders", + }, + }, + + v = { + ["ca"] = { + function() + vim.lsp.buf.code_action() + end, + "LSP code action", + }, + }, +} + +M.nvimtree = { + plugin = true, + + n = { + -- toggle + [""] = { " NvimTreeToggle ", "Toggle nvimtree" }, + + -- focus + ["e"] = { " NvimTreeFocus ", "Focus nvimtree" }, + }, +} + +M.telescope = { + plugin = true, + + n = { + -- find + ["ff"] = { " Telescope find_files ", "Find files" }, + ["fa"] = { " Telescope find_files follow=true no_ignore=true hidden=true ", "Find all" }, + ["fw"] = { " Telescope live_grep ", "Live grep" }, + ["fb"] = { " Telescope buffers ", "Find buffers" }, + ["fh"] = { " Telescope help_tags ", "Help page" }, + ["fo"] = { " Telescope oldfiles ", "Find oldfiles" }, + ["fz"] = { " Telescope current_buffer_fuzzy_find ", "Find in current buffer" }, + + -- git + ["cm"] = { " Telescope git_commits ", "Git commits" }, + ["gt"] = { " Telescope git_status ", "Git status" }, + + -- pick a hidden term + ["pt"] = { " Telescope terms ", "Pick hidden term" }, + + -- theme switcher + ["th"] = { " Telescope themes ", "Nvchad themes" }, + + ["ma"] = { " Telescope marks ", "telescope bookmarks" }, + }, +} + +M.nvterm = { + plugin = true, + + t = { + -- toggle in terminal mode + [""] = { + function() + require("nvterm.terminal").toggle "float" + end, + "Toggle floating term", + }, + + [""] = { + function() + require("nvterm.terminal").toggle "horizontal" + end, + "Toggle horizontal term", + }, + + [""] = { + function() + require("nvterm.terminal").toggle "vertical" + end, + "Toggle vertical term", + }, + }, + + n = { + -- toggle in normal mode + [""] = { + function() + require("nvterm.terminal").toggle "float" + end, + "Toggle floating term", + }, + + [""] = { + function() + require("nvterm.terminal").toggle "horizontal" + end, + "Toggle horizontal term", + }, + + [""] = { + function() + require("nvterm.terminal").toggle "vertical" + end, + "Toggle vertical term", + }, + + -- new + ["h"] = { + function() + require("nvterm.terminal").new "horizontal" + end, + "New horizontal term", + }, + + ["v"] = { + function() + require("nvterm.terminal").new "vertical" + end, + "New vertical term", + }, + }, +} + +M.whichkey = { + plugin = true, + + n = { + ["wK"] = { + function() + vim.cmd "WhichKey" + end, + "Which-key all keymaps", + }, + ["wk"] = { + function() + local input = vim.fn.input "WhichKey: " + vim.cmd("WhichKey " .. input) + end, + "Which-key query lookup", + }, + }, +} + +M.blankline = { + plugin = true, + + n = { + ["cc"] = { + function() + local ok, start = require("indent_blankline.utils").get_current_context( + vim.g.indent_blankline_context_patterns, + vim.g.indent_blankline_use_treesitter_scope + ) + + if ok then + vim.api.nvim_win_set_cursor(vim.api.nvim_get_current_win(), { start, 0 }) + vim.cmd [[normal! _]] + end + end, + + "Jump to current context", + }, + }, +} + +M.gitsigns = { + plugin = true, + + n = { + -- Navigation through hunks + ["]c"] = { + function() + if vim.wo.diff then + return "]c" + end + vim.schedule(function() + require("gitsigns").next_hunk() + end) + return "" + end, + "Jump to next hunk", + opts = { expr = true }, + }, + + ["[c"] = { + function() + if vim.wo.diff then + return "[c" + end + vim.schedule(function() + require("gitsigns").prev_hunk() + end) + return "" + end, + "Jump to prev hunk", + opts = { expr = true }, + }, + + -- Actions + ["rh"] = { + function() + require("gitsigns").reset_hunk() + end, + "Reset hunk", + }, + + ["ph"] = { + function() + require("gitsigns").preview_hunk() + end, + "Preview hunk", + }, + + ["gb"] = { + function() + package.loaded.gitsigns.blame_line() + end, + "Blame line", + }, + + ["td"] = { + function() + require("gitsigns").toggle_deleted() + end, + "Toggle deleted", + }, + }, +} + +return M diff --git a/modules/nvim/config/lua/core/utils.lua b/modules/nvim/config/lua/core/utils.lua new file mode 100644 index 0000000..8b2a03d --- /dev/null +++ b/modules/nvim/config/lua/core/utils.lua @@ -0,0 +1,118 @@ +local M = {} +local merge_tb = vim.tbl_deep_extend + +M.load_config = function() + local config = require "core.default_config" + local chadrc_path = vim.api.nvim_get_runtime_file("lua/custom/chadrc.lua", false)[1] + + if chadrc_path then + local chadrc = dofile(chadrc_path) + + config.mappings = M.remove_disabled_keys(chadrc.mappings, config.mappings) + config = merge_tb("force", config, chadrc) + config.mappings.disabled = nil + end + + return config +end + +M.remove_disabled_keys = function(chadrc_mappings, default_mappings) + if not chadrc_mappings then + return default_mappings + end + + -- store keys in a array with true value to compare + local keys_to_disable = {} + for _, mappings in pairs(chadrc_mappings) do + for mode, section_keys in pairs(mappings) do + if not keys_to_disable[mode] then + keys_to_disable[mode] = {} + end + section_keys = (type(section_keys) == "table" and section_keys) or {} + for k, _ in pairs(section_keys) do + keys_to_disable[mode][k] = true + end + end + end + + -- make a copy as we need to modify default_mappings + for section_name, section_mappings in pairs(default_mappings) do + for mode, mode_mappings in pairs(section_mappings) do + mode_mappings = (type(mode_mappings) == "table" and mode_mappings) or {} + for k, _ in pairs(mode_mappings) do + -- if key if found then remove from default_mappings + if keys_to_disable[mode] and keys_to_disable[mode][k] then + default_mappings[section_name][mode][k] = nil + end + end + end + end + + return default_mappings +end + +M.load_mappings = function(section, mapping_opt) + vim.schedule(function() + local function set_section_map(section_values) + if section_values.plugin then + return + end + + section_values.plugin = nil + + for mode, mode_values in pairs(section_values) do + local default_opts = merge_tb("force", { mode = mode }, mapping_opt or {}) + for keybind, mapping_info in pairs(mode_values) do + -- merge default + user opts + local opts = merge_tb("force", default_opts, mapping_info.opts or {}) + + mapping_info.opts, opts.mode = nil, nil + opts.desc = mapping_info[2] + + vim.keymap.set(mode, keybind, mapping_info[1], opts) + end + end + end + + local mappings = require("core.utils").load_config().mappings + + if type(section) == "string" then + mappings[section]["plugin"] = nil + mappings = { mappings[section] } + end + + for _, sect in pairs(mappings) do + set_section_map(sect) + end + end) +end + +M.lazy_load = function(plugin) + vim.api.nvim_create_autocmd({ "BufRead", "BufWinEnter", "BufNewFile" }, { + group = vim.api.nvim_create_augroup("BeLazyOnFileOpen" .. plugin, {}), + callback = function() + local file = vim.fn.expand "%" + local condition = file ~= "NvimTree_1" and file ~= "[lazy]" and file ~= "" + + if condition then + vim.api.nvim_del_augroup_by_name("BeLazyOnFileOpen" .. plugin) + + -- dont defer for treesitter as it will show slow highlighting + -- This deferring only happens only when we do "nvim filename" + if plugin ~= "nvim-treesitter" then + vim.schedule(function() + require("lazy").load { plugins = plugin } + + if plugin == "nvim-lspconfig" then + vim.cmd "silent! do FileType" + end + end, 0) + else + require("lazy").load { plugins = plugin } + end + end + end, + }) +end + +return M diff --git a/modules/nvim/config/lua/custom/.stylua.toml b/modules/nvim/config/lua/custom/.stylua.toml new file mode 100644 index 0000000..6342351 --- /dev/null +++ b/modules/nvim/config/lua/custom/.stylua.toml @@ -0,0 +1,6 @@ +column_width = 120 +line_endings = "Unix" +indent_type = "Tabs" +indent_width = 4 +quote_style = "AutoPreferDouble" +call_parentheses = "None" diff --git a/modules/nvim/config/lua/custom/README.md b/modules/nvim/config/lua/custom/README.md new file mode 100644 index 0000000..f700256 --- /dev/null +++ b/modules/nvim/config/lua/custom/README.md @@ -0,0 +1,99 @@ +# NvChad custom configuration + +This NvChad custom configuration is used by +[Lazyman](https://github.com/doctorfree/nvim-lazyman) as the custom add-on for +[NvChad](https://github.com/NvChad/NvChad). + +Installation and initialization are performed by the `lazyman -c` command. + +## Features + +- Automated installation of language servers, formatters, linters, and parsers +- Advanced LSP configuration with diagnostics and convenience keymaps +- Automated installation and initialization with `lazyman -c` command +- NvChad dashboard ([nvdash](https://github.com/NvChad/ui)) enhancements + - Hide statusline and tabline when in dashboard + - Random dashboard header selection + - Customized menu +- Set mapleader and maplocalleader to `comma` rather than `space` +- Convenience keymap `semi-colon` enters command mode +- Jump anywhere in a document with a few keystrokes using [Hop](https://github.com/phaazon/hop.nvim) +- Replace [nvterm](https://github.com/NvChad/nvterm) with [terminal.nvim](https://github.com/rebelot/terminal.nvim) +- Preconfigured autocmds and keymaps for easy execution of terminal and editor commands + +## Command keymaps + +| **Command** | **Keymap** | **Description** | +| ----------- | ---------- | --------------------- | +| Lazy | `,P` | Lazy plugin manager | +| Mason | `,M` | Mason package manager | +| Htop | `,H` | Htop system monitor | +| Lazygit | `,G` | Lazygit command | +| Lazyman | `,L` | Lazyman main menu | +| Lazyconf | `,C` | Lazyman configuration | + +## Convenience keymaps + +| **Keymap** | **Description** | +| ---------- | ------------------------------ | +| `,tt` | Toggle theme | +| `,tT` | Toggle transparency | +| `,cs` | Symbols outline | +| `,de` | Open floating diagnostic | +| `,dt` | Toggle diagnostics | +| `,dq` | Set diagnostics location list | +| `,ts` | Terminal send | +| `,to` | Terminal toggle | +| `,tO` | New Terminal toggle | +| `,tr` | Terminal run | +| `,tR` | New Terminal run | +| `,tk` | Terminal kill | +| `,t]` | Terminal next | +| `,t[` | Terminal prev | +| `,tl` | Terminal move below right | +| `,tL` | Terminal move bottom right | +| `,th` | Terminal move below right new | +| `,tH` | Terminal move bottom right new | +| `,tf` | Terminal move float | +| `,q` | Quit | + + +## Hop keymaps + +| **Keymap** | **Description** | +| ---------- | -------------------------------------------------- | +| `f` | Character after cursor, current line only | +| `F` | Character before cursor, current line only | +| `t` | Character after cursor, current line only, before | +| `T` | Character before cursor, current line only, before | +| `,hw` | HopWord | +| `,hl` | HopLineStart | +| `,hW` | HopWordMW | +| `,hH` | Hop hint pattern `[[\\d\\+]]` | +| `,hf'` | Hop hint pattern \[[\"\\|']] | +| `,hf-` | Hop hint pattern \[[-\\|+]] | +| `,hf;` | Hop hint pattern \[[;\\|:]] | +| `,hf/` | Hop hint pattern \[[/\\|?]] | +| `,hqj` | Hop hint pattern `[[(]]` | +| `,hqk` | Hop hint pattern `[[)]]` | +| `,hq[` | Hop hint pattern `[[{]]` | +| `,hq]` | Hop hint pattern `[[}]]` | +| `,hd` | Jump to definition | +| `yx` | Hyper Yank with Treesitter Node Select | +| `yl` | Hyper Yank a line | +| `yc` | Hyper Yank Treesitter code block | +| `ym` | Using Treehopper to yank | +| `vp` | Using Hop to paste | +| `,vp` | New line below target and paste | +| `vP` | Using Hop to paste | +| `,vP` | New line above target and paste | +| `vo` | Using Hop to open a new line below target | +| `,vo` | Insert below target | +| `vO` | Using Hop to open a new line above target | +| `,vO` | Insert above target | +| `vy` | Normal insert Treehopper node | +| `vY` | Using Hop with macros, HopLineStart normal | +| `Ls` | Trigger LuaSnip snippet | +| `,hm` | Treehopper nodes | +| `,h[` | Move to start of Treehopper node | +| `,h]` | Move to end of Treehopper node | diff --git a/modules/nvim/config/lua/custom/chadrc.lua b/modules/nvim/config/lua/custom/chadrc.lua new file mode 100644 index 0000000..72ab1b0 --- /dev/null +++ b/modules/nvim/config/lua/custom/chadrc.lua @@ -0,0 +1,67 @@ +---@type ChadrcConfig +local M = {} + +-- pick a random dashboard header +local header = require("custom.headers")["random"] + +-- Path to overriding theme and highlights files +local highlights = require "custom.highlights" + +M.ui = { + theme_toggle = { "tokyonight", "catppuccin" }, + theme = "catppuccin", + transparency = false, + hl_override = highlights.override, + hl_add = highlights.add, + lsp_semantic_tokens = true, -- adds highlight groups for lsp semantic tokens + telescope = { style = "bordered" }, -- borderless / bordered + -- https://github.com/NvChad/base46/tree/v2.0/lua/base46/extended_integrations + extended_integrations = { "notify" }, -- these aren't compiled by default, ex: "alpha", "notify" + + ------------------------------- nvchad_ui modules ----------------------------- + statusline = { + separator_style = "round", + }, + + -- nvdash (dashboard) + nvdash = { + load_on_startup = true, + header = header, + buttons = { + { " Find File", ", f f", "Telescope find_files" }, + { " Recent Files", ", f o", "Telescope oldfiles" }, + { " Find Word", ", f w", "Telescope live_grep" }, + { " Bookmarks", ", b m", "Telescope marks" }, + { " Themes", ", t h", "Telescope themes" }, + { " Mappings", ", c h", "NvCheatsheet" }, + { " Quit", ", q ", "quit" }, + }, + }, + + cheatsheet = { theme = "grid" }, -- simple/grid +} + +M.plugins = "custom.plugins" + +M.lazy_nvim = { + install = { + colorscheme = { "nvchad" }, + -- install missing plugins on startup. This doesn't increase startup time. + missing = true, + }, + ui = { + icons = { + ft = "", + lazy = "󰂠 ", + loaded = "", + not_loaded = "", + }, + size = { width = 0.8, height = 0.8 }, + border = "rounded", + }, +} + +-- check core.mappings for table structure +M.mappings = require "custom.mappings" + +return M diff --git a/modules/nvim/config/lua/custom/configs/hop.lua b/modules/nvim/config/lua/custom/configs/hop.lua new file mode 100644 index 0000000..c947767 --- /dev/null +++ b/modules/nvim/config/lua/custom/configs/hop.lua @@ -0,0 +1,237 @@ +local hop = require("hop") + +hop.setup() + +local set = vim.keymap.set +local keymap = vim.api.nvim_set_keymap +local opts = { noremap = true, silent = true } +local nosilent_opts = { noremap = true, silent = false } + +keymap("n", "", "q", opts) -- Macro q remap +keymap("x", "", "q", opts) +keymap("n", "?", "/", nosilent_opts) + +keymap("x", "hw", "HopWord", opts) +keymap("n", "hw", "HopWord", opts) +keymap("n", "hl", "HopLineStart", opts) +keymap("x", "hl", "HopLineStart", opts) +keymap("n", "hW", "HopWordMW", opts) + +keymap( + "o", + "f", + "lua require'hop'.hint_char1({ direction = require'hop.hint'.HintDirection.AFTER_CURSOR, current_line_only = true, inclusive_jump = true })", + opts +) +keymap( + "o", + "F", + "lua require'hop'.hint_char1({ direction = require'hop.hint'.HintDirection.BEFORE_CURSOR, current_line_only = true, inclusive_jump = false })", + opts +) +keymap("n", "hH", "lua require'hop'.hint_patterns({}, [[\\d\\+]])", opts) +keymap("n", "hf'", "lua require'hop'.hint_patterns({}, [[\"\\|']])", opts) +keymap("n", "hf-", "lua require'hop'.hint_patterns({}, [[-\\|+]])", opts) +keymap("n", "hf;", "lua require'hop'.hint_patterns({}, [[;\\|:]])", opts) + +keymap("n", "hf/", "lua require'hop'.hint_patterns({}, [[/\\|?]])", opts) + +keymap("n", "hqj", "lua require'hop'.hint_patterns({}, [[(]])", opts) +keymap("n", "hqk", "lua require'hop'.hint_patterns({}, [[)]])", opts) +keymap("n", "hq[", "lua require'hop'.hint_patterns({}, [[{]])", opts) +keymap("n", "hq]", "lua require'hop'.hint_patterns({}, [[}]])", opts) + +local directions = require('hop.hint').HintDirection +set('', 'f', function() + hop.hint_char1({ + direction = directions.AFTER_CURSOR, + current_line_only = true + }) +end, {remap=true}) +set('', 'F', function() + hop.hint_char1({ + direction = directions.BEFORE_CURSOR, + current_line_only = true + }) +end, {remap=true}) +set('', 't', function() + hop.hint_char1({ + direction = directions.AFTER_CURSOR, + current_line_only = true, + hint_offset = -1 + }) +end, {remap=true}) +set('', 'T', function() + hop.hint_char1({ + direction = directions.BEFORE_CURSOR, + current_line_only = true, + hint_offset = 1 + }) +end, {remap=true}) + +local jump_target = require("hop.jump_target") +local hint_char1_and_then = function(and_then_func) + return function() + local hopts = hop.opts + local c = hop.get_input_pattern("Hop 1 char: ", 1) + local generator = jump_target.jump_targets_by_scanning_lines + hop.hint_with_callback(generator(jump_target.regex_by_case_searching(c, true, hopts)), hopts, function(jt) + hop.move_cursor_to(jt.window, jt.line + 1, jt.column - 1, hopts.hint_offset) + and_then_func() + end) + end +end + +set("n", "hd", hint_char1_and_then(vim.lsp.buf.type_definition), + { desc = "Jump to definition", noremap = true, silent = true }) +local function jump_back_to_original_buffer(original_buffer) --{{{ + local current_buffer = vim.api.nvim_get_current_buf() + + if current_buffer ~= original_buffer then + -- jump back to the original buffer + vim.cmd([[normal! ]]) + else + -- jump back to the original line + vim.cmd([[normal! ]]) + end +end --}}} + +-- Hyper Yank with Treesitter Node Select +set("n", "yx", function() + local original_buffer = vim.api.nvim_get_current_buf() + + vim.cmd([[:HopLineStartMW]]) --> jump to line + vim.schedule(function() + require("syntax-tree-surfer").select() + vim.cmd([[normal! V]]) --> go to visual selection mode -> optional + vim.cmd([[normal! y]]) --> yank + jump_back_to_original_buffer(original_buffer) + end) +end, { desc = "Yank user syntax-tree-surfer", noremap = true, silent = true }) + +-- Hyper Yank a line +set("n", "yl", function() + local original_buffer = vim.api.nvim_get_current_buf() + + vim.cmd([[:HopLineStartMW]]) --> jump to line + vim.schedule(function() + vim.cmd([[normal! yy]]) --> yank the line + jump_back_to_original_buffer(original_buffer) + end) +end, { desc = "Yank a line with HopLineStart", noremap = true, silent = true }) + +-- Hyper Yank Treesitter Code Block +set("n", "yc", function() + local original_buffer = vim.api.nvim_get_current_buf() + vim.cmd([[:HopLineStartMW]]) + vim.schedule(function() + require("tsht").nodes() + vim.schedule(function() + vim.cmd([[normal! V]]) --> go to visual selection mode -> optional + vim.cmd([[normal! y]]) --> yank + jump_back_to_original_buffer(original_buffer) + end) + end) +end, { desc = "Yank a Treesitter code block", noremap = true, silent = true }) + +-- Using nvim-treehopper to yank +set("n", "ym", function() + require("tsht").nodes() + vim.schedule(function() + vim.cmd([[normal! V]]) --> go to visual selection mode + vim.cmd([[normal! y]]) --> yank + end) +end, { desc = "Yank using Treehopper", noremap = true, silent = true }) + +--SECTION: Hyper Paste + +set("n", "vp", function() + vim.cmd([[:HopLineStartMW]]) + vim.schedule(function() + vim.cmd([[normal! p]]) --> paste + end) +end, { desc = "Paste below target using HopLineStart", noremap = true, silent = true }) +set("n", "vp", function() + vim.cmd([[:HopLineStartMW]]) + vim.schedule(function() + vim.cmd([[normal! o]]) --> make new line below target + vim.cmd([[normal! o]]) --> make another new line below target + vim.cmd([[normal! p]]) --> paste + end) +end, { desc = "Paste below target using HopLineStart", noremap = true, silent = true }) + +set("n", "vP", function() + vim.cmd([[:HopLineStartMW]]) + vim.schedule(function() + vim.cmd([[normal! P]]) --> paste + end) +end, { desc = "Paste above target using HopLineStart", noremap = true, silent = true }) +set("n", "vP", function() + vim.cmd([[:HopLineStartMW]]) + vim.schedule(function() + vim.cmd([[normal! O]]) --> make another new line below target + vim.cmd([[normal! P]]) --> paste + end) +end, { desc = "Paste above target using HopLineStart", noremap = true, silent = true }) + +set("n", "vo", function() + vim.cmd([[:HopLineStart]]) + vim.schedule(function() + vim.cmd([[normal! o]]) + vim.cmd([[startinsert]]) + end) +end, { desc = "Open new line below HopLineStart target", noremap = true, silent = true }) +set("n", "vo", function() + vim.cmd([[:HopLineStart]]) + vim.schedule(function() + vim.cmd([[normal! o]]) + vim.cmd([[normal! o]]) + vim.cmd([[startinsert]]) + end) +end, { desc = "Open new line below HopLineStart target", noremap = true, silent = true }) + +set("n", "vO", function() + vim.cmd([[:HopLineStart]]) + vim.schedule(function() + vim.cmd([[normal! O]]) + vim.cmd([[normal! O]]) + vim.cmd([[startinsert]]) + end) +end, { desc = "Open new line above HopLineStart target", noremap = true, silent = true }) +set("n", "vO", function() + vim.cmd([[:HopLineStart]]) + vim.schedule(function() + vim.cmd([[normal! O]]) + vim.cmd([[normal! O]]) + vim.cmd([[startinsert]]) + end) +end, { desc = "Open new line above HopLineStart target", noremap = true, silent = true }) + +-- Hop with Macros + +set("n", "vY", function() + vim.cmd([[:HopLineStart]]) + vim.schedule(function() + vim.cmd([[:normal @f]]) + end) +end, { desc = "HopLineStart target in normal mode", noremap = true, silent = true }) + +-- Hop can even trigger LuaSnip Snippets (complicated) + +set("n", "Ls", function() + vim.cmd([[:HopLineStart]]) + vim.schedule(function() + vim.cmd([[:normal ojja ]]) + vim.cmd("startinsert") + end) +end, { desc = "Trigger LuaSnip snippet", noremap = true, silent = true }) + +-- TSHT (Treesitter hint textobject) --> mfussenegger/nvim-treehopper + +set("n", "vy", function() + require("tsht").nodes() + vim.schedule(function() + vim.cmd([[normal! c]]) + vim.cmd([[startinsert]]) + end) +end, { desc = "Treehopper node target insert", noremap = true, silent = true }) diff --git a/modules/nvim/config/lua/custom/configs/lspconfig.lua b/modules/nvim/config/lua/custom/configs/lspconfig.lua new file mode 100644 index 0000000..4e1167b --- /dev/null +++ b/modules/nvim/config/lua/custom/configs/lspconfig.lua @@ -0,0 +1,341 @@ +local showdiag = require("custom.diagnostics").show_diagnostics + +local open_float = "lua vim.diagnostic.open_float()" +if not showdiag == "popup" then + open_float = "" +end + +-- Style floating windows +vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, { border = "rounded" }) +vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(vim.lsp.handlers.signature_help, { border = "rounded" }) + +-- Borders for LspInfo winodw +require("lspconfig.ui.windows").default_options.border = "rounded" + +vim.api.nvim_create_autocmd("LspAttach", { + desc = "LSP actions", + callback = function() + local bufmap = function(mode, lhs, rhs) + vim.keymap.set(mode, lhs, rhs, { buffer = true }) + end + + -- Displays hover information about the symbol under the cursor + bufmap("n", "K", "lua vim.lsp.buf.hover()") + + -- Jump to the definition + bufmap("n", "gd", "lua vim.lsp.buf.definition()") + + -- Jump to declaration + bufmap("n", "gD", "lua vim.lsp.buf.declaration()") + + -- Lists all the implementations for the symbol under the cursor + bufmap("n", "gi", "lua vim.lsp.buf.implementation()") + + -- Jumps to the definition of the type symbol + bufmap("n", "go", "lua vim.lsp.buf.type_definition()") + + -- Lists all the references + bufmap("n", "gr", "lua vim.lsp.buf.references()") + + -- Displays a function's signature information + bufmap("n", "gs", "lua vim.lsp.buf.signature_help()") + + -- Renames all references to the symbol under the cursor + bufmap("n", "", "lua vim.lsp.buf.rename()") + + -- Selects a code action available at the current cursor position + bufmap("n", "", "lua vim.lsp.buf.code_action()") + bufmap("x", "", "lua vim.lsp.buf.range_code_action()") + + -- Show diagnostics in a floating window + bufmap("n", "gl", open_float) + + -- Move to the previous diagnostic + bufmap("n", "[d", "lua vim.diagnostic.goto_prev()") + + -- Move to the next diagnostic + bufmap("n", "]d", "lua vim.diagnostic.goto_next()") + end, +}) + +-- diagnostics +for name, icon in pairs(require("custom.icons").diagnostics) do + name = "DiagnosticSign" .. name + vim.fn.sign_define(name, { text = icon, texthl = name, numhl = "" }) +end +if showdiag == "none" then + vim.diagnostic.config(require("custom.diagnostics")["off"]) +else + vim.diagnostic.config(require("custom.diagnostics")["on"]) +end + +-- Show line diagnostics automatically in hover window +if showdiag == "popup" then + vim.cmd([[ + autocmd! CursorHold,CursorHoldI * lua vim.diagnostic.open_float(nil, { focus = false }) + ]]) +end + +-- Mappings. +-- See `:help vim.diagnostic.*` for documentation +local diagnostics_active = true +local toggle_diagnostics = function() + diagnostics_active = not diagnostics_active + if diagnostics_active then + vim.diagnostic.show() + else + vim.diagnostic.hide() + end +end + +vim.fn.sign_define("DiagnosticSignError", { text = "", texthl = "DiagnosticSignError" }) +vim.fn.sign_define("DiagnosticSignWarn", { text = "", texthl = "DiagnosticSignWarn" }) +vim.fn.sign_define("DiagnosticSignInfo", { text = "", texthl = "DiagnosticSignInfo" }) +vim.fn.sign_define("DiagnosticSignHint", { text = "", texthl = "DiagnosticSignHint" }) + +vim.diagnostic.config({ + update_in_insert = false, +}) + +-- local capabilities = vim.lsp.protocol.make_client_capabilities() +local capabilities = require("cmp_nvim_lsp").default_capabilities(vim.lsp.protocol.make_client_capabilities()) +capabilities.textDocument.completion.completionItem.snippetSupport = true +capabilities.textDocument.completion.completionItem.resolveSupport = { + properties = { + "documentation", + "detail", + "additionalTextEdits", + }, +} + +capabilities.textDocument.foldingRange = { + dynamicRegistration = false, + lineFoldingOnly = true, +} + +local null_ls = require("null-ls") +null_ls.setup({ + should_attach = function(bufnr) + local ft = vim.api.nvim_buf_get_option(bufnr, "filetype") + if ft == "dbui" or ft == "dbout" or ft:match("sql") then + return false + end + return true + end, + sources = { + null_ls.builtins.formatting.prettier, -- prettier, eslint, eslint_d, or prettierd + null_ls.builtins.formatting.stylua, + null_ls.builtins.formatting.trim_newlines, + null_ls.builtins.formatting.trim_whitespace, + null_ls.builtins.formatting.black, + null_ls.builtins.diagnostics.actionlint, + }, +}) + +local on_attach = require("plugins.configs.lspconfig").on_attach +local lspconfig = require("lspconfig") +local lsputil = require "lspconfig/util" +local navic = require("nvim-navic") + +lspconfig.gopls.setup { + on_attach = on_attach, + capabilities = capabilities, + cmd = { "gopls" }, + filetypes = { "go", "gomod", "gowork", "gotmpl" }, + root_dir = lsputil.root_pattern("go.work", "go.mod", ".git"), + settings = { + gopls = { + completeUnimported = true, + usePlaceholders = true, + analyses = { + unusedparams = true, + }, + }, + }, +} + +lspconfig.jsonls.setup({ + capabilities = capabilities, + settings = { + json = { + schemas = require("schemastore").json.schemas(), + }, + }, +}) + +lspconfig.pyright.setup({ + on_attach = on_attach, + capabilities = capabilities, + filetypes = { "python" }, +}) + +-- make sure to only run this once! +local tsserver_on_attach = function(client, bufnr) + -- disable tsserver formatting if you plan on formatting via null-ls + client.server_capabilities.document_formatting = false + client.server_capabilities.document_range_formatting = false + + local ts_utils = require("nvim-lsp-ts-utils") + + -- defaults + ts_utils.setup({ + enable_import_on_completion = true, + -- eslint + eslint_enable_code_actions = true, + eslint_enable_disable_comments = true, + eslint_bin = "eslint_d", + eslint_enable_diagnostics = false, + eslint_opts = {}, + -- formatting + enable_formatting = true, + formatter = "prettier", + formatter_opts = {}, + -- update imports on file move + update_imports_on_move = true, + require_confirmation_on_move = false, + watch_dir = nil, + -- filter diagnostics + filter_out_diagnostics_by_severity = {}, + filter_out_diagnostics_by_code = {}, + }) + + -- required to fix code action ranges and filter diagnostics + ts_utils.setup_client(client) + + -- no default maps, so you may want to define some here + local opts = { silent = true } + vim.api.nvim_buf_set_keymap(bufnr, "n", ",go", ":TSLspOrganize", opts) + vim.api.nvim_buf_set_keymap(bufnr, "n", ",gR", ":TSLspRenameFile", opts) + vim.api.nvim_buf_set_keymap(bufnr, "n", ",gi", ":TSLspImportAll", opts) + + navic.attach(client, bufnr) +end + +lspconfig.tsserver.setup({ + capabilities = capabilities, + on_attach = tsserver_on_attach, +}) + +local other_servers_with_navic = { + "html", + "pylsp", + "terraformls", + "vimls", + "bashls", + "awk_ls", + "rust_analyzer", + "ansiblels", + "cmake", + "cssmodules_ls", + "dockerls", + "marksman", + "sqlls", + "taplo", + "texlab", +} +for _, server in ipairs(other_servers_with_navic) do + if lspconfig[server] then + lspconfig[server].setup({ + capabilities = capabilities, + on_attach = function(client, bufnr) + navic.attach(client, bufnr) + end, + }) + end +end + +vim.keymap.set("n", "de", vim.diagnostic.open_float, { noremap = true, silent = true, desc = "Open float" }) +vim.keymap.set("n", "[d", vim.diagnostic.goto_prev, { noremap = true, silent = true }) +vim.keymap.set("n", "]d", vim.diagnostic.goto_next, { noremap = true, silent = true }) +vim.keymap.set( + "n", + "dq", + vim.diagnostic.setloclist, + { noremap = true, silent = true, desc = "Set diagnostics location list" } +) +vim.keymap.set("n", "dt", toggle_diagnostics, { desc = "Toggle diagnostics" }) + +lspconfig.yamlls.setup({ + capabilities = capabilities, + on_attach = function(client, bufnr) + navic.attach(client, bufnr) + end, + schemaStore = { + enable = true, + url = "https://www.schemastore.org/api/json/catalog.json", + }, + schemas = { + kubernetes = "*.yaml", + ["http://json.schemastore.org/github-workflow"] = ".github/workflows/*", + ["http://json.schemastore.org/github-action"] = ".github/action.{yml,yaml}", + ["http://json.schemastore.org/ansible-stable-2.9"] = "roles/tasks/*.{yml,yaml}", + ["http://json.schemastore.org/prettierrc"] = ".prettierrc.{yml,yaml}", + ["http://json.schemastore.org/kustomization"] = "kustomization.{yml,yaml}", + ["http://json.schemastore.org/ansible-playbook"] = "*play*.{yml,yaml}", + ["http://json.schemastore.org/chart"] = "Chart.{yml,yaml}", + ["https://json.schemastore.org/dependabot-v2"] = ".github/dependabot.{yml,yaml}", + ["https://gitlab.com/gitlab-org/gitlab/-/raw/master/app/assets/javascripts/editor/schema/ci.json"] = "*gitlab-ci*.{yml,yaml}", + ["https://raw.githubusercontent.com/OAI/OpenAPI-Specification/main/schemas/v3.1/schema.json"] = "*api*.{yml,yaml}", + ["https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json"] = "*docker-compose*.{yml,yaml}", + ["https://raw.githubusercontent.com/argoproj/argo-workflows/master/api/jsonschema/schema.json"] = "*flow*.{yml,yaml}", + }, + format = { enabled = false }, + validate = false, + completion = true, + hover = true, +}) + +lspconfig.clangd.setup({}) + +lspconfig.lua_ls.setup({ + capabilities = capabilities, + on_attach = navic.attach, + require("neodev").setup({ + library = { plugins = { "nvim-dap-ui" }, types = true }, + setup_jsonls = true, + lspconfig = false, + pathStrict = true, + override = function(root_dir, library) + local neodevutil = require("neodev.util") + if neodevutil.has_file(root_dir, "/etc/nixos") or neodevutil.has_file(root_dir, "nvim-config") then + library.enabled = true + library.plugins = true + end + end, + }), + -- Note: These settings will meaningfully increase the time until lua_ls + -- can service initial requests (completion, location) upon starting as well + -- as time to first diagnostics. Completion results will include a workspace + -- indexing progress message until the server has finished indexing. + before_init = require("neodev.lsp").before_init, + settings = { + Lua = { + runtime = { + version = "LuaJIT", + }, + diagnostics = { + globals = { + "vim", + "describe", + "it", + "before_each", + "after_each", + "pending", + "nnoremap", + "vnoremap", + "inoremap", + "tnoremap", + }, + }, + workspace = { + library = vim.api.nvim_get_runtime_file("", true), + checkThirdParty = false, + }, + telemetry = { + enable = false, + }, + }, + }, +}) + +vim.cmd([[ do User LspAttachBuffers ]]) diff --git a/modules/nvim/config/lua/custom/configs/neodev.lua b/modules/nvim/config/lua/custom/configs/neodev.lua new file mode 100644 index 0000000..37aac13 --- /dev/null +++ b/modules/nvim/config/lua/custom/configs/neodev.lua @@ -0,0 +1,19 @@ +require("neodev").setup({ + library = { + enabled = true, -- when not enabled, neodev will not change any settings to the LSP server + -- these settings will be used for your Neovim config directory + runtime = true, -- runtime path + types = true, -- full signature, docs and completion of vim.api, vim.treesitter, vim.lsp and others + plugins = true, -- installed opt or start plugins in packpath + -- you can also specify the list of plugins to make available as a workspace library + -- plugins = { "nvim-treesitter", "plenary.nvim", "telescope.nvim" }, + }, + setup_jsonls = true, -- configures jsonls to provide completion for project specific .luarc.json files + -- With lspconfig, Neodev will automatically setup your lua-language-server + -- If you disable this, then you have to set {before_init=require("neodev.lsp").before_init} + -- in your lsp start options + lspconfig = true, + -- much faster, but needs a recent built of lua-language-server + -- needs lua-language-server >= 3.6.0 + pathStrict = true, +}) diff --git a/modules/nvim/config/lua/custom/configs/null-ls.lua b/modules/nvim/config/lua/custom/configs/null-ls.lua new file mode 100644 index 0000000..a1b53a1 --- /dev/null +++ b/modules/nvim/config/lua/custom/configs/null-ls.lua @@ -0,0 +1,47 @@ +local null_ls = require("null-ls") +local augroup = vim.api.nvim_create_augroup("LspFormatting", {}) + +local b = null_ls.builtins + +local sources = { + + -- webdev stuff + b.formatting.deno_fmt, -- choosed deno for ts/js files cuz its very fast! + b.formatting.prettier.with { filetypes = { "html", "markdown", "css" } }, -- so prettier works only on these filetypes + + -- Lua + b.formatting.stylua, + + -- cpp + b.formatting.clang_format, + + -- Go + b.formatting.gofumpt, + b.formatting.goimports_reviser, + b.formatting.golines, + + -- Python + b.formatting.black, + b.diagnostics.mypy, + b.diagnostics.ruff, +} + +null_ls.setup { + debug = true, + sources = sources, + on_attach = function(client, bufnr) + if client.supports_method("textDocument/formatting") then + vim.api.nvim_clear_autocmds({ + group = augroup, + buffer = bufnr, + }) + vim.api.nvim_create_autocmd("BufWritePre", { + group = augroup, + buffer = bufnr, + callback = function() + vim.lsp.buf.format({ bufnr = bufnr }) + end, + }) + end + end, +} diff --git a/modules/nvim/config/lua/custom/configs/nvim-cmp.lua b/modules/nvim/config/lua/custom/configs/nvim-cmp.lua new file mode 100644 index 0000000..7e20713 --- /dev/null +++ b/modules/nvim/config/lua/custom/configs/nvim-cmp.lua @@ -0,0 +1,123 @@ +local cmp = require("cmp") +local luasnip = require("luasnip") + +cmp.setup.cmdline("/", { + mapping = cmp.mapping.preset.cmdline(), + sources = { { name = "buffer" } }, +}) +cmp.setup.cmdline(":", { + mapping = cmp.mapping.preset.cmdline(), + sources = cmp.config.sources({ { name = "path" } }, { { name = "cmdline" } }), +}) + +local select_opts = { behavior = cmp.SelectBehavior.Select } + +cmp.setup({ + snippet = { + expand = function(args) + luasnip.lsp_expand(args.body) + -- vim.fn["vsnip#anonymous"](args.body) -- For `vsnip` users. + -- require('luasnip').lsp_expand(args.body) -- For `luasnip` users. + -- require('snippy').expand_snippet(args.body) -- For `snippy` users. + -- vim.fn["UltiSnips#Anon"](args.body) -- For `ultisnips` users. + end, + }, + window = { + documentation = { + border = { "┌", "─", "┐", "│", "┘", "─", "└", "│" }, + }, + completion = { + border = { "┌", "─", "┐", "│", "┘", "─", "└", "│" }, + }, + }, + formatting = { + fields = { "kind", "abbr", "menu" }, + format = function(entry, item) + local icons = require("custom.icons").kinds + item.kind = icons[item.kind] + item.menu = ({ + nvim_lsp = "[LSP]", + nvim_lua = "[Lua]", + luasnip = "[Snippet]", + buffer = "[Buffer]", + path = "[Path]", + })[entry.source.name] + return item + end, + }, + experimental = { + native_menu = false, + ghost_text = { + enabled = true, + hl_group = "Comment", + }, + }, + mapping = { + [""] = cmp.mapping.select_prev_item(select_opts), + [""] = cmp.mapping.select_next_item(select_opts), + [""] = cmp.mapping.select_prev_item(select_opts), + [""] = cmp.mapping.select_next_item(select_opts), + [""] = cmp.mapping.scroll_docs(-4), + [""] = cmp.mapping.scroll_docs(4), + [""] = cmp.mapping.abort(), + [""] = cmp.mapping.confirm({ select = true }), + [""] = cmp.mapping.confirm({ select = false }), + [""] = cmp.mapping(function(fallback) + if luasnip.jumpable(1) then + luasnip.jump(1) + else + fallback() + end + end, { "i", "s" }), + [""] = cmp.mapping(function(fallback) + if luasnip.jumpable(-1) then + luasnip.jump(-1) + else + fallback() + end + end, { "i", "s" }), + [""] = cmp.mapping(function(fallback) + local col = vim.fn.col(".") - 1 + + if cmp.visible() then + cmp.select_next_item(select_opts) + elseif col == 0 or vim.fn.getline("."):sub(col, col):match("%s") then + fallback() + else + cmp.complete() + end + end, { "i", "s" }), + [""] = cmp.mapping(function(fallback) + if cmp.visible() then + cmp.select_prev_item(select_opts) + else + fallback() + end + end, { "i", "s" }), + }, + performance = { + debounce = 300, + throttle = 60, + fetching_timeout = 200, + }, + sources = { + { name = "path" }, + { name = "nvim_lsp", keyword_length = 1 }, + { name = "nvim_lua", keyword_length = 2 }, + { name = "buffer", keyword_length = 3 }, + { name = "luasnip", keyword_length = 2 }, + -- { name = 'zsh' }, -- With tamago324/cmp-zsh + -- { name = 'vsnip' }, -- For vsnip users. + -- { name = 'ultisnips' }, -- For ultisnips users. + -- { name = 'snippy' }, -- For snippy users. + }, +}) + +-- Set configuration for specific filetype. +cmp.setup.filetype("gitcommit", { + sources = cmp.config.sources({ + { name = "cmp_git" }, -- You can specify the `cmp_git` source if you were installed it. + }, { + { name = "buffer" }, + }), +}) diff --git a/modules/nvim/config/lua/custom/configs/overrides.lua b/modules/nvim/config/lua/custom/configs/overrides.lua new file mode 100644 index 0000000..398c511 --- /dev/null +++ b/modules/nvim/config/lua/custom/configs/overrides.lua @@ -0,0 +1,170 @@ +local M = {} + +-- lsp servers to install, see: +-- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md +M.lsp_servers = { + "awk_ls", + "bashls", + "cssmodules_ls", + "denols", + "dockerls", + "eslint", + "gopls", + "html", + "jsonls", + "ltex", + "marksman", + "pylsp", + "pyright", + "sqlls", + "tailwindcss", + "terraformls", + "texlab", + "tsserver", + "vimls", + "yamlls", +} +-- Some Mason lsp server packages are named differently than in lspconfig. Why? +-- See: https://mason-registry.dev/registry/list +M.lsp_servers_mason = { + "awk-language-server", + "bash-language-server", + "cssmodules-language-server", + "deno", + "dockerfile-language-server", + "eslint-lsp", + "gopls", + "html-lsp", + "json-lsp", + "ltex-ls", + "marksman", + "python-lsp-server", + "pyright", + "sqlls", + "tailwindcss-language-server", + "terraform-ls", + "texlab", + "typescript-language-server", + "vim-language-server", + "yaml-language-server", +} + +-- Formatters and linters installed by Mason +M.formatters_linters = { + "actionlint", + "goimports", + "gofumpt", + "golangci-lint", + "google-java-format", + "latexindent", + "markdownlint", + "prettier", + "sql-formatter", + "shellcheck", + "shfmt", + "stylua", + "tflint", + "yamllint", + "pylint", + "black", +} + +M.mason = { + ensure_installed = {}, + + PATH = "prepend", + + ui = { + check_outdated_packages_on_open = true, + border = "single", + width = 0.8, + height = 0.9, + icons = { + package_pending = " ", + package_installed = "󰄳 ", + package_uninstalled = " 󰚌", + }, + keymaps = { + toggle_package_expand = "", + install_package = "i", + update_package = "u", + check_package_version = "c", + update_all_packages = "U", + check_outdated_packages = "C", + uninstall_package = "X", + cancel_installation = "", + apply_language_filter = "", + }, + }, + log_level = vim.log.levels.INFO, + max_concurrent_installers = 4, +} + +M.treesitter = { + ensure_installed = { + "bash", + "c", + "cmake", + "cpp", + "css", + "dockerfile", + "dot", + "elvish", + "fish", + "git_rebase", + "gitattributes", + "gitcommit", + "gitignore", + "go", + "godot_resource", + "gomod", + "gowork", + "html", + "http", + "java", + "javascript", + "jq", + "json", + "json5", + "jsonc", + "kotlin", + "latex", + "lua", + "make", + "markdown", + "markdown_inline", + "mermaid", + "meson", + "ninja", + "nix", + "org", + "python", + "regex", + "rust", + "sql", + "svelte", + "sxhkdrc", + "todotxt", + "toml", + "typescript", + "vim", + "yaml", + "zig", + }, +} + +M.nvimtree = { + git = { + enable = true, + }, + renderer = { + highlight_git = true, + icons = { + show = { + git = true, + }, + }, + }, +} + +return M diff --git a/modules/nvim/config/lua/custom/configs/symbols-outline.lua b/modules/nvim/config/lua/custom/configs/symbols-outline.lua new file mode 100644 index 0000000..c46efe9 --- /dev/null +++ b/modules/nvim/config/lua/custom/configs/symbols-outline.lua @@ -0,0 +1,7 @@ +local spec = { + "simrat39/symbols-outline.nvim", + cmd = "SymbolsOutline", + config = true, +} + +return spec diff --git a/modules/nvim/config/lua/custom/configs/terminal_nvim.lua b/modules/nvim/config/lua/custom/configs/terminal_nvim.lua new file mode 100644 index 0000000..a7a476d --- /dev/null +++ b/modules/nvim/config/lua/custom/configs/terminal_nvim.lua @@ -0,0 +1,98 @@ +local map = vim.keymap.set +local api = vim.api + +require("terminal").setup() + +local term_map = require("terminal.mappings") +map({ "n", "x" }, "ts", term_map.operator_send, { expr = true, desc = "Terminal Send" }) +map("n", "to", term_map.toggle, { desc = "Terminal Toggle" }) +map("n", "tO", term_map.toggle({ open_cmd = "enew" }), { desc = "New Terminal Toggle" }) +map("n", "tr", term_map.run, { desc = "Terminal Run" }) +map("n", "tR", term_map.run(nil, { layout = { open_cmd = "enew" } }), { desc = "New Terminal Run" }) +map("n", "tk", term_map.kill, { desc = "Terminal Kill" }) +map("n", "t]", term_map.cycle_next, { desc = "Terminal Next" }) +map("n", "t[", term_map.cycle_prev, { desc = "Terminal Prev" }) +map("n", "tl", term_map.move({ open_cmd = "belowright vnew" }), { desc = "Move Below Right" }) +map("n", "tL", term_map.move({ open_cmd = "botright vnew" }), { desc = "Move Bottom Right" }) +map("n", "th", term_map.move({ open_cmd = "belowright new" }), { desc = "Move Below Right New" }) +map("n", "tH", term_map.move({ open_cmd = "botright new" }), { desc = "Move Bottom Right New" }) +map("n", "tf", term_map.move({ open_cmd = "float" }), { desc = "Move Float" }) + +if vim.fn.executable("ipython") == 1 then + local ipython = require("terminal").terminal:new({ + layout = { open_cmd = "botright vertical new", border = "rounded" }, + cmd = { "ipython" }, + autoclose = true, + }) + api.nvim_create_user_command("IPython", function() + local bufnr = api.nvim_get_current_buf() + if vim.bo[bufnr].filetype == "python" then + map("x", "ts", function() + api.nvim_feedkeys('"+y', "n", false) + ipython:send("%paste") + end, { buffer = bufnr }) + map("n", "t?", function() + require("terminal").send(vim.v.count, vim.fn.expand("") .. "?") + end, { buffer = bufnr }) + end + ipython:toggle(nil, true) + end, {}) +end + +if vim.fn.executable("lazygit") == 1 then + local lazygit = require("terminal").terminal:new({ + layout = { open_cmd = "float", border = "rounded", height = 0.8, width = 0.8 }, + cmd = { "lazygit" }, + autoclose = true, + }) + api.nvim_create_user_command("Lazygit", function(args) + lazygit.cwd = args.args and vim.fn.expand(args.args) + lazygit:toggle(nil, true) + end, { nargs = "?" }) +end + +if vim.fn.executable("htop") == 1 then + local htop = require("terminal").terminal:new({ + layout = { open_cmd = "float", border = "rounded" }, + cmd = { "htop" }, + autoclose = true, + }) + api.nvim_create_user_command("Htop", function() + htop:toggle(nil, true) + end, { nargs = "?" }) +end + +if vim.fn.executable("lazyman") == 1 then + local lazyman = require("terminal").terminal:new({ + layout = { open_cmd = "float", border = "rounded", height = 0.85, width = 0.85 }, + cmd = { "lazyman" }, + autoclose = true, + }) + api.nvim_create_user_command("Lazyman", function() + lazyman:toggle(nil, true) + end, { nargs = "?" }) + + local lazyconf = require("terminal").terminal:new({ + layout = { open_cmd = "float", border = "rounded", height = 0.85, width = 0.85 }, + cmd = { "lazyman", "-F" }, + autoclose = true, + }) + api.nvim_create_user_command("Lazyconf", function() + lazyconf:toggle(nil, true) + end, { nargs = "?" }) +end + +if vim.fn.executable("asciiville") == 1 then + local asciiville = require("terminal").terminal:new({ + layout = { open_cmd = "float", border = "rounded", height = 0.9, width = 0.9 }, + cmd = { "asciiville", "-i", "-G" }, + autoclose = true, + }) + api.nvim_create_user_command("Asciiville", function() + asciiville:toggle(nil, true) + end, { nargs = "?" }) +end + +if vim.fn.executable("nvr") == 1 then + vim.env["GIT_EDITOR"] = "nvr --remote-tab-wait-silent +'set bufhidden=wipe'" +end diff --git a/modules/nvim/config/lua/custom/configs/trouble.lua b/modules/nvim/config/lua/custom/configs/trouble.lua new file mode 100644 index 0000000..15c7a7d --- /dev/null +++ b/modules/nvim/config/lua/custom/configs/trouble.lua @@ -0,0 +1,8 @@ +---@type NvPluginSpec +local spec = { + "folke/trouble.nvim", + cmd = {"Trouble", "TroubleToggle"}, + config = true, -- Todo: change when base46 has colors? for this +} + +return spec diff --git a/modules/nvim/config/lua/custom/diagnostics.lua b/modules/nvim/config/lua/custom/diagnostics.lua new file mode 100644 index 0000000..e290b67 --- /dev/null +++ b/modules/nvim/config/lua/custom/diagnostics.lua @@ -0,0 +1,63 @@ +-- Show diagnostics, can be one of "none", "icons", "popup". Default is "popup" +-- "none": diagnostics are disabled but still underlined +-- "icons": only an icon will show, use ',de' to see the diagnostic +-- "popup": an icon will show and a popup with the diagnostic will appear +local showdiag = "icons" + +if showdiag == "none" then + vim.g.diagnostics_enabled = false +else + vim.g.diagnostics_enabled = true +end + +local sign = function(opts) + vim.fn.sign_define(opts.name, { + texthl = opts.name, + text = opts.text, + numhl = "", + }) +end + +sign({ name = "DiagnosticSignError", text = "✘" }) +sign({ name = "DiagnosticSignWarn", text = "⚠" }) +sign({ name = "DiagnosticSignHint", text = "•" }) +sign({ name = "DiagnosticSignInfo", text = "ⓘ" }) + +local diagnostics = { + off = { + underline = true, + virtual_text = false, + signs = false, + update_in_insert = false, + }, + on = { + virtual_text = false, -- disable virtual text + virtual_lines = false, + update_in_insert = false, + underline = true, + severity_sort = true, + signs = true, + float = { + focusable = false, + style = "minimal", + header = "", + prefix = "", + border = "rounded", + format = function(diagnostic) + return string.format("%s (%s)", diagnostic.message, diagnostic.source) + end, + }, + }, +} + +vim.api.nvim_create_user_command("ToggleDiagnostic", function() + if vim.g.diagnostics_enabled then + vim.diagnostic.config(diagnostics["off"]) + vim.g.diagnostics_enabled = false + else + vim.diagnostic.config(diagnostics["on"]) + vim.g.diagnostics_enabled = true + end +end, { nargs = 0 }) + +return diagnostics diff --git a/modules/nvim/config/lua/custom/headers.lua b/modules/nvim/config/lua/custom/headers.lua new file mode 100644 index 0000000..6997b2b --- /dev/null +++ b/modules/nvim/config/lua/custom/headers.lua @@ -0,0 +1,141 @@ +local headers = { + imgs = { + ["h1"] = { + [[ █▄▄▄▄ ▄▄▄ █ ▄ ▄▄▄ ▄ ▄▄▄ ▄ ▄ █ ▄]], + [[▄ █ █▄█ █▄█ █ █ █▄█ █ █▄█ ▄▄▄ █ █]], + [[█▄█ ▄ █▄▄█▄▄█ █ ▄▄█ █ ▄ █ █▄█▄█ █]], + [[ █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█ █▄█▄▄▄█ ]], + }, + ["h2"] = { + [[ ▄ ▄ ]], + [[ ▄ ▄▄▄ ▄ ▄▄▄ ▄ ▄ ]], + [[ █ ▄ █▄█ ▄▄▄ █ █▄█ █ █ ]], + [[ ▄▄ █▄█▄▄▄█ █▄█▄█▄▄█▄▄█ █ ]], + [[ ▄ █▄▄█ ▄ ▄▄ ▄█ ▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ]], + [[ █▄▄▄▄ ▄▄▄ █ ▄ ▄▄▄ ▄ ▄▄▄ ▄ ▄ █ ▄]], + [[▄ █ █▄█ █▄█ █ █ █▄█ █ █▄█ ▄▄▄ █ █]], + [[█▄█ ▄ █▄▄█▄▄█ █ ▄▄█ █ ▄ █ █▄█▄█ █]], + [[ █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█ █▄█▄▄▄█ ]], + }, + ["h3"] = { + [[ dMMMMb dMMMMMP .aMMMb dMP dMP dMP dMMMMMMMMb ]], + [[ dMP dMP dMP dMP"dMP dMP dMP amr dMP"dMP"dMP ]], + [[ dMP dMP dMMMP dMP dMP dMP dMP dMP dMP dMP dMP ]], + [[ dMP dMP dMP dMP.aMP YMvAP" dMP dMP dMP dMP ]], + [[ dMP dMP dMMMMMP VMMMP" VP" dMP dMP dMP dMP ]], + }, + ["h5"] = { + [[ _/ _/ _/_/_/ _/ _/ ]], + [[ _/_/ _/ _/ _/ _/ _/_/_/ _/_/_/ _/_/_/ ]], + [[ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ ]], + [[ _/ _/_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ ]], + [[ _/ _/ _/ _/_/_/ _/ _/ _/_/_/ _/_/_/ ]], + }, + ["h6"] = { + [[ _ __ ______ __ __]], + [[ / | / /_ __ / ____// /_ ____ _ ____/ /]], + [[ / |/ /| | / // / / __ \ / __ `// __ / ]], + [[ / /| / | |/ // /___ / / / // /_/ // /_/ / ]], + [[/_/ |_/ |___/ \____//_/ /_/ \__,_/ \__,_/ ]], + }, + ["h7"] = { + [[ , _ ___ _ ]], + [[ /|/ \ / (_)| | | ]], + [[ | | | | | __, __| ]], + [[ | | | |_| |/ \ / | / | ]], + [[ | |_/ \/ \___/| |_/\_/|_/\_/|_/]], + }, + ["h8"] = { + [[ _ _ ____ _ _ ]], + [[| \ | |__ __ / ___|| |__ __ _ __| |]], + [[| \| |\ \ / /| | | '_ \ / _` | / _` |]], + [[| |\ | \ V / | |___ | | | || (_| || (_| |]], + [[|_| \_| \_/ \____||_| |_| \__,_| \__,_|]], + }, + }, + banners = { + ["graffiti"] = { + [[ _______ ____ ___.__ ]], + [[ \ \ ____ ___\ \ / |__| _____ ]], + [[ / | \_/ __ \/ _ \ Y /| |/ \ ]], + [[ / | \ ___( <_> \ / | | Y Y \ ]], + [[ \____|__ /\___ \____/ \___/ |__|__|_| / ]], + [[ \/ \/ \/ ]], + }, + ["ogre"] = { + [[ __ _ ]], + [[ /\ \ \___ ___/\ /(_)_ __ ___ ]], + [[ / \/ / _ \/ _ \ \ / | | '_ ` _ \ ]], + [[ / /\ | __| (_) \ V /| | | | | | | ]], + [[ \_\ \/ \___|\___/ \_/ |_|_| |_| |_| ]], + }, + ["banner3"] = { + [[ ## ## ######## ####### ## ## #### ## ## ]], + [[ ### ## ## ## ## ## ## ## ### ### ]], + [[ #### ## ## ## ## ## ## ## #### #### ]], + [[ ## ## ## ###### ## ## ## ## ## ## ### ## ]], + [[ ## #### ## ## ## ## ## ## ## ## ]], + [[ ## ### ## ## ## ## ## ## ## ## ]], + [[ ## ## ######## ####### ### #### ## ## ]], + }, + ["larry_3d"] = { + [[ __ __ __ __ ]], + [[ /\ \/\ \ /\ \/\ \ __ ]], + [[ \ \ `\\ \ __ ___\ \ \ \ \/\_\ ___ ___ ]], + [[ \ \ , ` \ /'__`\ / __`\ \ \ \ \/\ \ /' __` __`\ ]], + [[ \ \ \`\ \/\ __//\ \L\ \ \ \_/ \ \ \/\ \/\ \/\ \ ]], + [[ \ \_\ \_\ \____\ \____/\ `\___/\ \_\ \_\ \_\ \_\ ]], + [[ \/_/\/_/\/____/\/___/ `\/__/ \/_/\/_/\/_/\/_/ ]], + }, + ["lean"] = { + [[ _/ _/ _/ _/ _/ ]], + [[ _/_/ _/ _/_/ _/_/ _/ _/ _/_/_/ _/_/ ]], + [[ _/ _/ _/ _/_/_/_/ _/ _/ _/ _/ _/ _/ _/ _/ ]], + [[ _/ _/_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ ]], + [[ _/ _/ _/_/_/ _/_/ _/ _/ _/ _/ _/ ]], + }, + ["sharp"] = { + [[ ████ ██████ █████ ██ ]], + [[ ███████████ █████  ]], + [[ █████████ ███████████████████ ███ ███████████ ]], + [[ █████████ ███ █████████████ █████ ██████████████ ]], + [[ █████████ ██████████ █████████ █████ █████ ████ █████ ]], + [[ ███████████ ███ ███ █████████ █████ █████ ████ █████ ]], + [[ ██████ █████████████████████ ████ █████ █████ ████ ██████ ]], + }, + ["h8"] = { + [[ ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗ ]], + [[ ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║ ]], + [[ ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║ ]], + [[ ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║ ]], + [[ ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║ ]], + [[ ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝ ]], + }, + ["h9"] = { + [[ /$$ ]], + [[ /$$$$$$$ /$$$$$$ /$$$$$$ /$$ /$$ /$$ /$$$$$$/$$$$ ]], + [[ | $$__ $$ /$$__ $$ /$$__ $$| $$ /$$/| $$| $$_ $$_ $$ ]], + [[ | $$ \ $$| $$$$$$$$| $$ \ $$ \ $$/$$/ | $$| $$ \ $$ \ $$ ]], + [[ | $$ | $$| $$_____/| $$ | $$ \ $$$/ | $$| $$ | $$ | $$ ]], + [[ | $$ | $$| $$$$$$$| $$$$$$/ \ $/ | $$| $$ | $$ | $$ ]], + [[ |__/ |__/ \_______/ \______/ \_/ |__/|__/ |__/ |__/ ]], + }, + }, +} + +return setmetatable(headers, { + __index = function(tb, key) + if key == "random" then + -- Choose a random sub-table inside headers (imgs | banners) + local ks = vim.tbl_keys(tb) + local sub = tb[ks[math.random(#ks)]] + + -- Obtain keys and return a random banner + local keys = vim.tbl_keys(sub) + return sub[keys[math.random(1, #keys)]] + else + -- Return the desired banner + return tb[key] + end + end, +}) diff --git a/modules/nvim/config/lua/custom/highlights.lua b/modules/nvim/config/lua/custom/highlights.lua new file mode 100644 index 0000000..c74a4e5 --- /dev/null +++ b/modules/nvim/config/lua/custom/highlights.lua @@ -0,0 +1,27 @@ +-- To find any highlight groups: " Telescope highlights" +-- Each highlight group can take a table with variables fg, bg, bold, italic, etc +-- base30 variable names can also be used as colors + +local M = {} + +---@type Base46HLGroupsList +M.override = { + Comment = { + italic = true, + }, + NvDashAscii = { + bg = "black", + fg = "blue" + }, + NvDashButtons = { + bg = "black2", + fg = "blue" + } +} + +---@type HLTable +M.add = { + NvimTreeOpenedFolderName = { fg = "green", bold = true }, +} + +return M diff --git a/modules/nvim/config/lua/custom/icons.lua b/modules/nvim/config/lua/custom/icons.lua new file mode 100644 index 0000000..c406210 --- /dev/null +++ b/modules/nvim/config/lua/custom/icons.lua @@ -0,0 +1,102 @@ +return { + arrows = { + ArrowRight = "❯", + ArrowLeft = "❮", + -- ChevronRight = "", + ChevronRight = ">", + CurvedArrowRight = " ", + DoubleArrowRight = "»", + SmallArrowRight = "➜", + Diamond = "<>", + }, + ui = { + BigCircle = " ", + BigUnfilledCircle = " ", + BookMark = " ", + Bug = " ", + Calendar = " ", + Check = " ", + Circle = " ", + Close = " ", + Code = " ", + Comment = " ", + Dashboard = " ", + Fire = " ", + Gear = " ", + History = " ", + Lightbulb = " ", + List = " ", + Lock = " ", + NewFile = " ", + Note = " ", + Package = " ", + Pencil = " ", + Plus = "+", + Project = " ", + RunningMan = "🏃", + Search = " ", + SignIn = " ", + Table = " ", + Telescope = " ", + Yoga = "🧘", + Xmark = "✗", + }, + diagnostics = { + Warn = "", + Info = "", + Error = " ", + Hint = " ", + Information = " ", + Question = " ", + Warning = " ", + }, + git = { + added = "", + modified = "", + removed = "", + Add = " ", + Diff = " ", + Ignore = " ", + Mod = " ", + Remove = " ", + Rename = " ", + Repo = " ", + }, + kinds = { + Array = " ", + Boolean = " ", + Class = " ", + Color = " ", + Constant = " ", + Constructor = " ", + Copilot = " ", + Enum = " ", + EnumMember = " ", + Event = " ", + Field = " ", + File = " ", + Folder = " ", + Function = " ", + Interface = " ", + Key = " ", + Keyword = " ", + Method = " ", + Module = " ", + Namespace = " ", + Null = "ﳠ ", + Number = " ", + Object = " ", + Operator = " ", + Package = " ", + Property = " ", + Reference = " ", + Snippet = " ", + String = " ", + Struct = " ", + Text = " ", + TypeParameter = " ", + Unit = " ", + Value = " ", + Variable = " ", + }, +} diff --git a/modules/nvim/config/lua/custom/init.lua b/modules/nvim/config/lua/custom/init.lua new file mode 100644 index 0000000..ae578bd --- /dev/null +++ b/modules/nvim/config/lua/custom/init.lua @@ -0,0 +1,78 @@ +local autocmd = vim.api.nvim_create_autocmd +local user_showtabline = 2 +local user_laststatus = 3 + +-- Change mapleader and maplocalleader from space to comma +vim.g.mapleader = "," +vim.g.maplocalleader = "," + +local dash_group = vim.api.nvim_create_augroup("NvDash_au", { clear = true }) +autocmd("Filetype", { + pattern = "nvdash", + desc = "disable status and tabline entering nvdash", + group = dash_group, + callback = function() + if vim.opt.showtabline ~= nil then + user_showtabline = vim.opt.showtabline + else + user_showtabline = 2 + end + if vim.opt.laststatus ~= nil then + user_laststatus = vim.opt.laststatus + else + user_laststatus = 3 + end + vim.cmd([[ setlocal nonumber norelativenumber nocursorline noruler ]]) + vim.opt.showtabline = 0 + vim.opt.laststatus = 0 + end +}) +autocmd("BufUnload", { + desc = "enable status and tabline after nvdash", + group = dash_group, + callback = function() + if vim.bo.filetype == "nvdash" then + if user_showtabline ~= nil then + vim.opt.showtabline = user_showtabline + else + vim.opt.showtabline = 2 + end + if user_laststatus ~= nil then + vim.opt.laststatus = user_laststatus + else + vim.opt.laststatus = 3 + end + end + end, +}) + +local function augroup(name) + return vim.api.nvim_create_augroup("lazyman_" .. name, { clear = true }) +end + +local term_group = vim.api.nvim_create_augroup("Terminal_au", { clear = true }) + +-- Check if we need to reload the file when it changed +vim.api.nvim_create_autocmd({ "FocusGained", "TermClose", "TermLeave" }, { + group = term_group, + command = "checktime", +}) + +-- Auto insert mode for Terminal +vim.api.nvim_create_autocmd({ "WinEnter", "BufWinEnter", "TermOpen" }, { + desc = "Auto insert mode entering window, buffer, terminal", + group = term_group, + callback = function(args) + if vim.startswith(vim.api.nvim_buf_get_name(args.buf), "term://") then + vim.opt_local.wrap = true + vim.opt_local.spell = false + vim.cmd("startinsert") + end + end, +}) + +-- Auto resize panes when resizing nvim window +autocmd("VimResized", { + pattern = "*", + command = "tabdo wincmd =", +}) diff --git a/modules/nvim/config/lua/custom/mappings.lua b/modules/nvim/config/lua/custom/mappings.lua new file mode 100644 index 0000000..3918716 --- /dev/null +++ b/modules/nvim/config/lua/custom/mappings.lua @@ -0,0 +1,97 @@ +---@type MappingsTable +local M = {} + +M.general = { + n = { + [";"] = { ":", "enter command mode", opts = { nowait = true } }, + ["P"] = { " Lazy ", "Lazy plugin mgr" }, + ["M"] = { " Mason ", "Mason package mgr" }, + ["H"] = { " Htop ", "Htop system monitor" }, + ["G"] = { " Lazygit ", "Lazygit command" }, + ["L"] = { " Lazyman ", "Lazyman menu" }, + ["C"] = { " Lazyconf ", "Lazyman configuration" }, + ["A"] = { " Asciiville ", "Asciiville" }, + ["q"] = { " quitall! ", "quit" }, + ["tT"] = { + function() + require("base46").toggle_transparency() + end, + "toggle transparency" + }, + ["tt"] = { + function() + require("base46").toggle_theme() + end, + "toggle theme" + }, + }, +} + +M.symbols_outline = { + n = { + ["cs"] = { "SymbolsOutline", "Symbols Outline" }, + }, +} + +M.dap = { + plugin = true, + n = { + ["db"] = { + " DapToggleBreakpoint ", + "Add breakpoint at line" + }, + ["dus"] = { + function() + local widgets = require('dap.ui.widgets'); + local sidebar = widgets.sidebar(widgets.scopes); + sidebar.open(); + end, + "Open debugging sidebar" + } + } +} + +M.dap_go = { + plugin = true, + n = { + ["dgt"] = { + function() + require('dap-go').debug_test() + end, + "Debug go test" + }, + ["dgl"] = { + function() + require('dap-go').debug_last() + end, + "Debug last go test" + } + } +} + +M.dap_python = { + plugin = true, + n = { + ["dpr"] = { + function() + require('dap-python').test_method() + end + } + } +} + +M.gopher = { + plugin = true, + n = { + ["gsj"] = { + " GoTagAdd json ", + "Add json struct tags" + }, + ["gsy"] = { + " GoTagAdd yaml ", + "Add yaml struct tags" + } + } +} + +return M diff --git a/modules/nvim/config/lua/custom/plugins.lua b/modules/nvim/config/lua/custom/plugins.lua new file mode 100644 index 0000000..cce2fd5 --- /dev/null +++ b/modules/nvim/config/lua/custom/plugins.lua @@ -0,0 +1,416 @@ +local overrides = require("custom.configs.overrides") + +--- @param on_attach fun(client, buffer) +local navic_on_attach = function(on_attach) + vim.api.nvim_create_autocmd("LspAttach", { + callback = function(args) + local buffer = args.buf + local client = vim.lsp.get_client_by_id(args.data.client_id) + on_attach(client, buffer) + end, + }) +end + +local plugins = { + + -- Override plugin definition options + + { + "NvChad/nvterm", + enabled = false, + }, + + { + "hrsh7th/nvim-cmp", + version = false, -- last release is way too old + event = "VeryLazy", + dependencies = { + "hrsh7th/cmp-nvim-lsp", + "hrsh7th/cmp-buffer", + "hrsh7th/cmp-path", + "hrsh7th/cmp-cmdline", + "saadparwaiz1/cmp_luasnip", + }, + config = function() + require("plugins.configs.cmp") + require("custom.configs.nvim-cmp") + end, + }, + + { + "neovim/nvim-lspconfig", + dependencies = { + "williamboman/mason.nvim", + "williamboman/mason-lspconfig.nvim", + "jose-elias-alvarez/nvim-lsp-ts-utils", + "jose-elias-alvarez/null-ls.nvim", + "nvim-lua/plenary.nvim", + "b0o/schemastore.nvim", + "folke/neodev.nvim", + }, + init = function() + require("core.utils").lazy_load "nvim-lspconfig" + end, + config = function() + local lsp_on_attach = require("plugins.configs.lspconfig").on_attach + local capabilities = require("plugins.configs.lspconfig").capabilities + local lspconfig = require("lspconfig") + local opts = { + ensure_installed = overrides.formatters_linters, + ui = { + border = "rounded", + icons = { + package_pending = " ", + package_installed = " ", + package_uninstalled = " ﮊ", + }, + }, + } + require("mason").setup(opts) + local mr = require("mason-registry") + local function install_ensured() + for _, tool in ipairs(opts.ensure_installed) do + local p = mr.get_package(tool) + if not p:is_installed() then + p:install() + end + end + end + if mr.refresh then + mr.refresh(install_ensured) + else + install_ensured() + end + require("mason-lspconfig").setup { + ensure_installed = overrides.lsp_servers, + automatic_installation = true, + } + require("mason-lspconfig").setup_handlers { + -- Default setup for all servers, unless a custom one is defined below + function(server_name) + lspconfig[server_name].setup { + on_attach = function(client, bufnr) + lsp_on_attach(client, bufnr) + end, + capabilities = capabilities, + } + end, + -- custom setup for a server goes after the function above + -- Example, override rust_analyzer + -- ["rust_analyzer"] = function () + -- require("rust-tools").setup {} + -- end, + ["clangd"] = function() + lspconfig.clangd.setup { + cmd = { + "clangd", + "--offset-encoding=utf-16", -- To match null-ls + -- With this, you can configure server with + -- - .clangd files + -- - global clangd/config.yaml files + -- Read the `--enable-config` option in `clangd --help` for more information + "--enable-config", + }, + on_attach = function(client, bufnr) + lsp_on_attach(client, bufnr) + end, + capabilities = capabilities, + } + end, + + -- Example: disable auto configuring an LSP + -- Here, we disable lua_ls so we can use NvChad's default config + ["lua_ls"] = function() end, + } + require("plugins.configs.lspconfig") + require("custom.configs.lspconfig") + end, + }, + + { + "folke/neodev.nvim", + version = false, -- last release is way too old + event = "VeryLazy", + dependencies = { + "hrsh7th/nvim-cmp", + }, + config = function() + require("custom.configs.neodev") + end, + }, + + { + "jose-elias-alvarez/null-ls.nvim", + event = { "BufReadPre", "BufNewFile" }, + dependencies = { + "neovim/nvim-lspconfig", + "mason.nvim", + }, + config = function() + vim.filetype.add { + extension = { + zsh = "zsh", + }, + } + local null_ls = require("null-ls") + local formatting = null_ls.builtins.formatting + local diagnostics = null_ls.builtins.diagnostics + local actions = null_ls.builtins.code_actions + null_ls.setup { + debug = false, + sources = { + formatting.prettier.with { + -- milliseconds + timeout = 10000, + extra_args = { "--single-quote", "false" }, + }, + formatting.stylua.with { + timeout = 10000, + extra_args = { "--indent-type", "Spaces", "--indent-width", "2" }, + }, + formatting.terraform_fmt, + formatting.goimports, + formatting.gofumpt, + formatting.latexindent.with { + timeout = 10000, + extra_args = { "-g", "/dev/null" }, -- https://github.com/cmhughes/latexindent.pl/releases/tag/V3.9.3 + }, + actions.shellcheck, + actions.gitsigns, + formatting.shfmt.with { + extra_args = { "-i", "2", "-ci", "-bn" }, + filetypes = { "sh", "zsh", "bash" }, + }, + diagnostics.ruff, + formatting.google_java_format, + formatting.black.with { + timeout = 10000, + extra_args = { "--fast" }, + }, + formatting.sql_formatter.with { + timeout = 10000, + extra_args = { "--config" }, + }, + formatting.markdownlint, + formatting.beautysh.with { + timeout = 10000, + extra_args = { "--indent-size", "2" }, + }, + diagnostics.zsh.with { + filetypes = { "zsh" }, + }, + }, + on_attach = function(client, bufnr) + if client.supports_method "textDocument/formatting" then + local augroup = vim.api.nvim_create_augroup("LspFormatting", {}) + vim.api.nvim_clear_autocmds { group = augroup, buffer = bufnr } + vim.api.nvim_create_autocmd("BufWritePre", { + group = augroup, + buffer = bufnr, + callback = function() + vim.lsp.buf.format { bufnr = bufnr } + end, + }) + end + end, + } + end, + }, + + -- override plugin configs + { + "williamboman/mason.nvim", + build = ":MasonUpdate", + cmd = { + "Mason", + "MasonInstall", + "MasonInstallAll", + "MasonUninstall", + "MasonUninstallAll", + "MasonLog", + "MasonUpdate", + }, + lazy = false, + opts = overrides.mason, + -- opts = function() + -- return require "plugins.configs.mason" + -- end, + config = function(_, opts) + dofile(vim.g.base46_cache .. "mason") + require("mason").setup(opts) + + -- custom nvchad cmd to install all mason binaries listed + local mason_packages = overrides.lsp_servers_mason + local mason_fml = overrides.formatters_linters + for i = 1, #mason_fml do + mason_packages[#mason_packages + 1] = mason_fml[i] + end + vim.api.nvim_create_user_command("MasonInstallAll", function() + vim.cmd("MasonInstall " .. table.concat(mason_packages, " ")) + end, {}) + + vim.g.mason_binaries_list = mason_packages + end, + }, + + { + "nvim-treesitter/nvim-treesitter", + opts = overrides.treesitter, + }, + + { + "nvim-tree/nvim-tree.lua", + opts = overrides.nvimtree, + }, + + -- Install a plugin + + -- lsp symbol navigation + { + "SmiteshP/nvim-navic", + lazy = true, + init = function() + vim.g.navic_silence = true + navic_on_attach(function(client, buffer) + if client.server_capabilities.documentSymbolProvider then + require("nvim-navic").attach(client, buffer) + end + end) + end, + opts = function() + return { + separator = " ", + highlight = true, + depth_limit = 0, + depth_limit_indicator = "..", + icons = require("custom.icons").kinds, + } + end, + }, + { + "max397574/better-escape.nvim", + event = "InsertEnter", + config = function() + require("better_escape").setup() + end, + }, + + { "ziontee113/syntax-tree-surfer" }, + + { + "mfussenegger/nvim-treehopper", + lazy = false, + config = function() + local tree_hopper = require("tsht") + vim.keymap.set("n", "hm", function() + tree_hopper.nodes() + end, { desc = "Treehopper nodes" }) + vim.keymap.set("n", "h[", function() + tree_hopper.move { side = "start" } + end, { desc = "Move to start of Treehopper node" }) + vim.keymap.set("n", "h]", function() + tree_hopper.move { side = "end" } + end, { desc = "Move to end of Treehopper node" }) + end, + }, + + { + "phaazon/hop.nvim", + branch = "v2", + cmd = { + "HopAnywhere", + "HopChar1", + "HopChar2", + "HopLine", + "HopLineStart", + "HopVertical", + "HopPattern", + "HopWord", + }, + lazy = false, + config = function() + require("custom.configs.hop") + end, + }, + + { + "rebelot/terminal.nvim", + cmd = { + "Asciiville", + "TermOpen", + "TermToggle", + "TermRun", + "Lazygit", + "IPython", + "Lazyman", + "Lazyconf", + "Htop", + }, + event = "TermOpen", + config = function() + require("custom.configs.terminal_nvim") + end, + }, + + { import = "custom.configs.symbols-outline" }, + { import = "custom.configs.trouble" }, + + { + "mfussenegger/nvim-dap", + init = function() + require("core.utils").load_mappings("dap") + end + }, + { + "leoluz/nvim-dap-go", + ft = "go", + dependencies = "mfussenegger/nvim-dap", + config = function(_, opts) + require("dap-go").setup(opts) + require("core.utils").load_mappings("dap_go") + end + }, + { + "rcarriga/nvim-dap-ui", + dependencies = "mfussenegger/nvim-dap", + config = function() + local dap = require("dap") + local dapui = require("dapui") + dapui.setup() + dap.listeners.after.event_initialized["dapui_config"] = function() + dapui.open() + end + dap.listeners.before.event_terminated["dapui_config"] = function() + dapui.close() + end + dap.listeners.before.event_exited["dapui_config"] = function() + dapui.close() + end + end + }, + { + "mfussenegger/nvim-dap-python", + ft = "python", + dependencies = { + "mfussenegger/nvim-dap", + "rcarriga/nvim-dap-ui", + }, + config = function() + local path = vim.fn.stdpath("data") .. "/mason/packages/debugpy/venv/bin/python" + require("dap-python").setup(path) + require("core.utils").load_mappings("dap_python") + end, + }, + { + "olexsmir/gopher.nvim", + ft = "go", + config = function(_, opts) + require("gopher").setup(opts) + require("core.utils").load_mappings("gopher") + end, + build = function() + vim.cmd [[silent! GoInstallDeps]] + end, + }, +} +return plugins diff --git a/modules/nvim/config/lua/plugins/configs/cmp.lua b/modules/nvim/config/lua/plugins/configs/cmp.lua new file mode 100644 index 0000000..444da73 --- /dev/null +++ b/modules/nvim/config/lua/plugins/configs/cmp.lua @@ -0,0 +1,120 @@ +local cmp = require "cmp" + +dofile(vim.g.base46_cache .. "cmp") + +local cmp_ui = require("core.utils").load_config().ui.cmp +local cmp_style = cmp_ui.style + +local field_arrangement = { + atom = { "kind", "abbr", "menu" }, + atom_colored = { "kind", "abbr", "menu" }, +} + +local formatting_style = { + -- default fields order i.e completion word + item.kind + item.kind icons + fields = field_arrangement[cmp_style] or { "abbr", "kind", "menu" }, + + format = function(_, item) + local icons = require "nvchad.icons.lspkind" + local icon = (cmp_ui.icons and icons[item.kind]) or "" + + if cmp_style == "atom" or cmp_style == "atom_colored" then + icon = " " .. icon .. " " + item.menu = cmp_ui.lspkind_text and " (" .. item.kind .. ")" or "" + item.kind = icon + else + icon = cmp_ui.lspkind_text and (" " .. icon .. " ") or icon + item.kind = string.format("%s %s", icon, cmp_ui.lspkind_text and item.kind or "") + end + + return item + end, +} + +local function border(hl_name) + return { + { "╭", hl_name }, + { "─", hl_name }, + { "╮", hl_name }, + { "│", hl_name }, + { "╯", hl_name }, + { "─", hl_name }, + { "╰", hl_name }, + { "│", hl_name }, + } +end + +local options = { + completion = { + completeopt = "menu,menuone", + }, + + window = { + completion = { + side_padding = (cmp_style ~= "atom" and cmp_style ~= "atom_colored") and 1 or 0, + winhighlight = "Normal:CmpPmenu,CursorLine:CmpSel,Search:None", + scrollbar = false, + }, + documentation = { + border = border "CmpDocBorder", + winhighlight = "Normal:CmpDoc", + }, + }, + snippet = { + expand = function(args) + require("luasnip").lsp_expand(args.body) + end, + }, + + formatting = formatting_style, + + mapping = { + [""] = cmp.mapping.select_prev_item(), + [""] = cmp.mapping.select_next_item(), + [""] = cmp.mapping.scroll_docs(-4), + [""] = cmp.mapping.scroll_docs(4), + [""] = cmp.mapping.complete(), + [""] = cmp.mapping.close(), + [""] = cmp.mapping.confirm { + behavior = cmp.ConfirmBehavior.Insert, + select = true, + }, + [""] = cmp.mapping(function(fallback) + if cmp.visible() then + cmp.select_next_item() + elseif require("luasnip").expand_or_jumpable() then + vim.fn.feedkeys(vim.api.nvim_replace_termcodes("luasnip-expand-or-jump", true, true, true), "") + else + fallback() + end + end, { + "i", + "s", + }), + [""] = cmp.mapping(function(fallback) + if cmp.visible() then + cmp.select_prev_item() + elseif require("luasnip").jumpable(-1) then + vim.fn.feedkeys(vim.api.nvim_replace_termcodes("luasnip-jump-prev", true, true, true), "") + else + fallback() + end + end, { + "i", + "s", + }), + }, + sources = { + { name = "nvim_lsp" }, + { name = "luasnip" }, + { name = "buffer" }, + { name = "nvim_lua" }, + { name = "path" }, + }, +} + +if cmp_style ~= "atom" and cmp_style ~= "atom_colored" then + options.window.completion.border = border "CmpBorder" +end + +return options diff --git a/modules/nvim/config/lua/plugins/configs/lazy_nvim.lua b/modules/nvim/config/lua/plugins/configs/lazy_nvim.lua new file mode 100644 index 0000000..cd170bd --- /dev/null +++ b/modules/nvim/config/lua/plugins/configs/lazy_nvim.lua @@ -0,0 +1,47 @@ +return { + defaults = { lazy = true }, + install = { colorscheme = { "nvchad" } }, + + ui = { + icons = { + ft = "", + lazy = "󰂠 ", + loaded = "", + not_loaded = "", + }, + }, + + performance = { + rtp = { + disabled_plugins = { + "2html_plugin", + "tohtml", + "getscript", + "getscriptPlugin", + "gzip", + "logipat", + "netrw", + "netrwPlugin", + "netrwSettings", + "netrwFileHandlers", + "matchit", + "tar", + "tarPlugin", + "rrhelper", + "spellfile_plugin", + "vimball", + "vimballPlugin", + "zip", + "zipPlugin", + "tutor", + "rplugin", + "syntax", + "synmenu", + "optwin", + "compiler", + "bugreport", + "ftplugin", + }, + }, + }, +} diff --git a/modules/nvim/config/lua/plugins/configs/lspconfig.lua b/modules/nvim/config/lua/plugins/configs/lspconfig.lua new file mode 100644 index 0000000..f824aa0 --- /dev/null +++ b/modules/nvim/config/lua/plugins/configs/lspconfig.lua @@ -0,0 +1,64 @@ +dofile(vim.g.base46_cache .. "lsp") +require "nvchad.lsp" + +local M = {} +local utils = require "core.utils" + +-- export on_attach & capabilities for custom lspconfigs + +M.on_attach = function(client, bufnr) + utils.load_mappings("lspconfig", { buffer = bufnr }) + + if client.server_capabilities.signatureHelpProvider then + require("nvchad.signature").setup(client) + end + + if not utils.load_config().ui.lsp_semantic_tokens and client.supports_method "textDocument/semanticTokens" then + client.server_capabilities.semanticTokensProvider = nil + end +end + +M.capabilities = vim.lsp.protocol.make_client_capabilities() + +M.capabilities.textDocument.completion.completionItem = { + documentationFormat = { "markdown", "plaintext" }, + snippetSupport = true, + preselectSupport = true, + insertReplaceSupport = true, + labelDetailsSupport = true, + deprecatedSupport = true, + commitCharactersSupport = true, + tagSupport = { valueSet = { 1 } }, + resolveSupport = { + properties = { + "documentation", + "detail", + "additionalTextEdits", + }, + }, +} + +require("lspconfig").lua_ls.setup { + on_attach = M.on_attach, + capabilities = M.capabilities, + + settings = { + Lua = { + diagnostics = { + globals = { "vim" }, + }, + workspace = { + library = { + [vim.fn.expand "$VIMRUNTIME/lua"] = true, + [vim.fn.expand "$VIMRUNTIME/lua/vim/lsp"] = true, + [vim.fn.stdpath "data" .. "/lazy/ui/nvchad_types"] = true, + [vim.fn.stdpath "data" .. "/lazy/lazy.nvim/lua/lazy"] = true, + }, + maxPreload = 100000, + preloadFileSize = 10000, + }, + }, + }, +} + +return M diff --git a/modules/nvim/config/lua/plugins/configs/mason.lua b/modules/nvim/config/lua/plugins/configs/mason.lua new file mode 100644 index 0000000..3692a15 --- /dev/null +++ b/modules/nvim/config/lua/plugins/configs/mason.lua @@ -0,0 +1,28 @@ +local options = { + ensure_installed = { "lua-language-server" }, -- not an option from mason.nvim + + PATH = "skip", + + ui = { + icons = { + package_pending = " ", + package_installed = "󰄳 ", + package_uninstalled = " 󰚌", + }, + + keymaps = { + toggle_server_expand = "", + install_server = "i", + update_server = "u", + check_server_version = "c", + update_all_servers = "U", + check_outdated_servers = "C", + uninstall_server = "X", + cancel_installation = "", + }, + }, + + max_concurrent_installers = 10, +} + +return options diff --git a/modules/nvim/config/lua/plugins/configs/nvimtree.lua b/modules/nvim/config/lua/plugins/configs/nvimtree.lua new file mode 100644 index 0000000..b4a8aee --- /dev/null +++ b/modules/nvim/config/lua/plugins/configs/nvimtree.lua @@ -0,0 +1,77 @@ +local options = { + filters = { + dotfiles = false, + exclude = { vim.fn.stdpath "config" .. "/lua/custom" }, + }, + disable_netrw = true, + hijack_netrw = true, + hijack_cursor = true, + hijack_unnamed_buffer_when_opening = false, + sync_root_with_cwd = true, + update_focused_file = { + enable = true, + update_root = false, + }, + view = { + adaptive_size = false, + side = "left", + width = 30, + preserve_window_proportions = true, + }, + git = { + enable = false, + ignore = true, + }, + filesystem_watchers = { + enable = true, + }, + actions = { + open_file = { + resize_window = true, + }, + }, + renderer = { + root_folder_label = false, + highlight_git = false, + highlight_opened_files = "none", + + indent_markers = { + enable = false, + }, + + icons = { + show = { + file = true, + folder = true, + folder_arrow = true, + git = false, + }, + + glyphs = { + default = "󰈚", + symlink = "", + folder = { + default = "", + empty = "", + empty_open = "", + open = "", + symlink = "", + symlink_open = "", + arrow_open = "", + arrow_closed = "", + }, + git = { + unstaged = "✗", + staged = "✓", + unmerged = "", + renamed = "➜", + untracked = "★", + deleted = "", + ignored = "◌", + }, + }, + }, + }, +} + +return options diff --git a/modules/nvim/config/lua/plugins/configs/others.lua b/modules/nvim/config/lua/plugins/configs/others.lua new file mode 100644 index 0000000..dafd5a4 --- /dev/null +++ b/modules/nvim/config/lua/plugins/configs/others.lua @@ -0,0 +1,66 @@ +local M = {} +local utils = require "core.utils" + +M.blankline = { + indentLine_enabled = 1, + filetype_exclude = { + "help", + "terminal", + "lazy", + "lspinfo", + "TelescopePrompt", + "TelescopeResults", + "mason", + "nvdash", + "nvcheatsheet", + "", + }, + buftype_exclude = { "terminal" }, + show_trailing_blankline_indent = false, + show_first_indent_level = false, + show_current_context = true, + show_current_context_start = true, +} + +M.luasnip = function(opts) + require("luasnip").config.set_config(opts) + + -- vscode format + require("luasnip.loaders.from_vscode").lazy_load() + require("luasnip.loaders.from_vscode").lazy_load { paths = vim.g.vscode_snippets_path or "" } + + -- snipmate format + require("luasnip.loaders.from_snipmate").load() + require("luasnip.loaders.from_snipmate").lazy_load { paths = vim.g.snipmate_snippets_path or "" } + + -- lua format + require("luasnip.loaders.from_lua").load() + require("luasnip.loaders.from_lua").lazy_load { paths = vim.g.lua_snippets_path or "" } + + vim.api.nvim_create_autocmd("InsertLeave", { + callback = function() + if + require("luasnip").session.current_nodes[vim.api.nvim_get_current_buf()] + and not require("luasnip").session.jump_active + then + require("luasnip").unlink_current() + end + end, + }) +end + +M.gitsigns = { + signs = { + add = { text = "│" }, + change = { text = "│" }, + delete = { text = "󰍵" }, + topdelete = { text = "‾" }, + changedelete = { text = "~" }, + untracked = { text = "│" }, + }, + on_attach = function(bufnr) + utils.load_mappings("gitsigns", { buffer = bufnr }) + end, +} + +return M diff --git a/modules/nvim/config/lua/plugins/configs/telescope.lua b/modules/nvim/config/lua/plugins/configs/telescope.lua new file mode 100644 index 0000000..784fb19 --- /dev/null +++ b/modules/nvim/config/lua/plugins/configs/telescope.lua @@ -0,0 +1,55 @@ +local options = { + defaults = { + vimgrep_arguments = { + "rg", + "-L", + "--color=never", + "--no-heading", + "--with-filename", + "--line-number", + "--column", + "--smart-case", + }, + prompt_prefix = "  ", + selection_caret = " ", + entry_prefix = " ", + initial_mode = "insert", + selection_strategy = "reset", + sorting_strategy = "ascending", + layout_strategy = "horizontal", + layout_config = { + horizontal = { + prompt_position = "top", + preview_width = 0.55, + results_width = 0.8, + }, + vertical = { + mirror = false, + }, + width = 0.87, + height = 0.80, + preview_cutoff = 120, + }, + file_sorter = require("telescope.sorters").get_fuzzy_file, + file_ignore_patterns = { "node_modules" }, + generic_sorter = require("telescope.sorters").get_generic_fuzzy_sorter, + path_display = { "truncate" }, + winblend = 0, + border = {}, + borderchars = { "─", "│", "─", "│", "╭", "╮", "╯", "╰" }, + color_devicons = true, + set_env = { ["COLORTERM"] = "truecolor" }, -- default = nil, + file_previewer = require("telescope.previewers").vim_buffer_cat.new, + grep_previewer = require("telescope.previewers").vim_buffer_vimgrep.new, + qflist_previewer = require("telescope.previewers").vim_buffer_qflist.new, + -- Developer configurations: Not meant for general override + buffer_previewer_maker = require("telescope.previewers").buffer_previewer_maker, + mappings = { + n = { ["q"] = require("telescope.actions").close }, + }, + }, + + extensions_list = { "themes", "terms" }, +} + +return options diff --git a/modules/nvim/config/lua/plugins/configs/treesitter.lua b/modules/nvim/config/lua/plugins/configs/treesitter.lua new file mode 100644 index 0000000..b21b55d --- /dev/null +++ b/modules/nvim/config/lua/plugins/configs/treesitter.lua @@ -0,0 +1,12 @@ +local options = { + ensure_installed = { "lua" }, + + highlight = { + enable = true, + use_languagetree = true, + }, + + indent = { enable = true }, +} + +return options diff --git a/modules/nvim/config/lua/plugins/init.lua b/modules/nvim/config/lua/plugins/init.lua new file mode 100644 index 0000000..bce7140 --- /dev/null +++ b/modules/nvim/config/lua/plugins/init.lua @@ -0,0 +1,253 @@ +-- All plugins have lazy=true by default,to load a plugin on startup just lazy=false +-- List of all default plugins & their definitions +local default_plugins = { + + "nvim-lua/plenary.nvim", + + { + "NvChad/base46", + branch = "v2.0", + build = function() + require("base46").load_all_highlights() + end, + }, + + { + "NvChad/ui", + branch = "v2.0", + lazy = false, + }, + + { + "NvChad/nvterm", + init = function() + require("core.utils").load_mappings "nvterm" + end, + config = function(_, opts) + require "base46.term" + require("nvterm").setup(opts) + end, + }, + + { + "NvChad/nvim-colorizer.lua", + event = "User FilePost", + config = function(_, opts) + require("colorizer").setup(opts) + + -- execute colorizer as soon as possible + vim.defer_fn(function() + require("colorizer").attach_to_buffer(0) + end, 0) + end, + }, + + { + "nvim-tree/nvim-web-devicons", + opts = function() + return { override = require "nvchad.icons.devicons" } + end, + config = function(_, opts) + dofile(vim.g.base46_cache .. "devicons") + require("nvim-web-devicons").setup(opts) + end, + }, + + { + "lukas-reineke/indent-blankline.nvim", + version = "2.20.7", + event = "User FilePost", + opts = function() + return require("plugins.configs.others").blankline + end, + config = function(_, opts) + require("core.utils").load_mappings "blankline" + dofile(vim.g.base46_cache .. "blankline") + require("indent_blankline").setup(opts) + end, + }, + + { + "nvim-treesitter/nvim-treesitter", + event = { "BufReadPost", "BufNewFile" }, + tag = "v0.9.2", + cmd = { "TSInstall", "TSBufEnable", "TSBufDisable", "TSModuleInfo" }, + build = ":TSUpdate", + opts = function() + return require "plugins.configs.treesitter" + end, + config = function(_, opts) + dofile(vim.g.base46_cache .. "syntax") + require("nvim-treesitter.configs").setup(opts) + end, + }, + + -- git stuff + { + "lewis6991/gitsigns.nvim", + event = "User FilePost", + opts = function() + return require("plugins.configs.others").gitsigns + end, + config = function(_, opts) + dofile(vim.g.base46_cache .. "git") + require("gitsigns").setup(opts) + end, + }, + + -- lsp stuff + { + "williamboman/mason.nvim", + cmd = { "Mason", "MasonInstall", "MasonInstallAll", "MasonUpdate" }, + opts = function() + return require "plugins.configs.mason" + end, + config = function(_, opts) + dofile(vim.g.base46_cache .. "mason") + require("mason").setup(opts) + + -- custom nvchad cmd to install all mason binaries listed + vim.api.nvim_create_user_command("MasonInstallAll", function() + if opts.ensure_installed and #opts.ensure_installed > 0 then + vim.cmd("MasonInstall " .. table.concat(opts.ensure_installed, " ")) + end + end, {}) + + vim.g.mason_binaries_list = opts.ensure_installed + end, + }, + + { + "neovim/nvim-lspconfig", + event = "User FilePost", + config = function() + require "plugins.configs.lspconfig" + end, + }, + + -- load luasnips + cmp related in insert mode only + { + "hrsh7th/nvim-cmp", + event = "InsertEnter", + dependencies = { + { + -- snippet plugin + "L3MON4D3/LuaSnip", + dependencies = "rafamadriz/friendly-snippets", + opts = { history = true, updateevents = "TextChanged,TextChangedI" }, + config = function(_, opts) + require("plugins.configs.others").luasnip(opts) + end, + }, + + -- autopairing of (){}[] etc + { + "windwp/nvim-autopairs", + opts = { + fast_wrap = {}, + disable_filetype = { "TelescopePrompt", "vim" }, + }, + config = function(_, opts) + require("nvim-autopairs").setup(opts) + + -- setup cmp for autopairs + local cmp_autopairs = require "nvim-autopairs.completion.cmp" + require("cmp").event:on("confirm_done", cmp_autopairs.on_confirm_done()) + end, + }, + + -- cmp sources plugins + { + "saadparwaiz1/cmp_luasnip", + "hrsh7th/cmp-nvim-lua", + "hrsh7th/cmp-nvim-lsp", + "hrsh7th/cmp-buffer", + "hrsh7th/cmp-path", + }, + }, + opts = function() + return require "plugins.configs.cmp" + end, + config = function(_, opts) + require("cmp").setup(opts) + end, + }, + + { + "numToStr/Comment.nvim", + keys = { + { "gcc", mode = "n", desc = "Comment toggle current line" }, + { "gc", mode = { "n", "o" }, desc = "Comment toggle linewise" }, + { "gc", mode = "x", desc = "Comment toggle linewise (visual)" }, + { "gbc", mode = "n", desc = "Comment toggle current block" }, + { "gb", mode = { "n", "o" }, desc = "Comment toggle blockwise" }, + { "gb", mode = "x", desc = "Comment toggle blockwise (visual)" }, + }, + init = function() + require("core.utils").load_mappings "comment" + end, + config = function(_, opts) + require("Comment").setup(opts) + end, + }, + + -- file managing , picker etc + { + "nvim-tree/nvim-tree.lua", + cmd = { "NvimTreeToggle", "NvimTreeFocus" }, + init = function() + require("core.utils").load_mappings "nvimtree" + end, + opts = function() + return require "plugins.configs.nvimtree" + end, + config = function(_, opts) + dofile(vim.g.base46_cache .. "nvimtree") + require("nvim-tree").setup(opts) + end, + }, + + { + "nvim-telescope/telescope.nvim", + dependencies = { "nvim-treesitter/nvim-treesitter" }, + cmd = "Telescope", + init = function() + require("core.utils").load_mappings "telescope" + end, + opts = function() + return require "plugins.configs.telescope" + end, + config = function(_, opts) + dofile(vim.g.base46_cache .. "telescope") + local telescope = require "telescope" + telescope.setup(opts) + + -- load extensions + for _, ext in ipairs(opts.extensions_list) do + telescope.load_extension(ext) + end + end, + }, + + -- Only load whichkey after all the gui + { + "folke/which-key.nvim", + keys = { "", "", "", '"', "'", "`", "c", "v", "g" }, + init = function() + require("core.utils").load_mappings "whichkey" + end, + cmd = "WhichKey", + config = function(_, opts) + dofile(vim.g.base46_cache .. "whichkey") + require("which-key").setup(opts) + end, + }, +} + +local config = require("core.utils").load_config() + +if #config.plugins > 0 then + table.insert(default_plugins, { import = config.plugins }) +end + +require("lazy").setup(default_plugins, config.lazy_nvim) diff --git a/modules/nvim/default.nix b/modules/nvim/default.nix new file mode 100644 index 0000000..a756204 --- /dev/null +++ b/modules/nvim/default.nix @@ -0,0 +1,16 @@ +{ lib, config, pkgs, ... }: + +with lib; +let cfg = config.modules.nvim; + +in { + options.modules.nvim = { enable = mkEnableOption "nvim"; }; + config = mkIf cfg.enable { + home.file.".config/nvim" = { + source = ./config; + recursive = true; + }; + home.file.".npmrc".source = ./npmrc; + }; +} + diff --git a/modules/nvim/npmrc b/modules/nvim/npmrc new file mode 100644 index 0000000..0c06bc9 --- /dev/null +++ b/modules/nvim/npmrc @@ -0,0 +1 @@ +prefix=${HOME}/.npm-global diff --git a/modules/packages/default.nix b/modules/packages/default.nix new file mode 100644 index 0000000..6e5e5a0 --- /dev/null +++ b/modules/packages/default.nix @@ -0,0 +1,67 @@ +{ inputs, pkgs, lib, config, python3, ... }: + +with lib; +let + cfg = config.modules.packages; + pyenv = ps: with ps; [ + impacket + dsinternals + pypykatz + lsassy + pip + ldapdomaindump + requests + ]; + +in { + options.modules.packages = { enable = mkEnableOption "packages"; }; + config = mkIf cfg.enable { + home.packages = with pkgs; [ + # Basic Tools + eza + fzf + ripgrep + ffmpeg + gnupg + imagemagick + libnotify + git + file + bat + wget + neovim + gcc + cmake + unzip + pavucontrol + playerctl + gtklock + brightnessctl + inputs.hypr-contrib.packages.${pkgs.system}.grimblast + openssl + cifs-utils + mlocate + nfs-utils + openvpn + wireguard-tools + p7zip + samba + net-snmp + tcpdump + inetutils + unrar + distrobox + dig + moreutils + jq + perl + binutils + zlib + jdk + # GUI Applications + brave + discord + firefox + ]; + }; + } diff --git a/modules/podman/default.nix b/modules/podman/default.nix new file mode 100644 index 0000000..2d23206 --- /dev/null +++ b/modules/podman/default.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: +{ + virtualisation = { + podman = { + enable = true; + + dockerCompat = true; + + defaultNetwork.settings.dns_enabled = true; + }; + }; + } diff --git a/modules/podman/podman/default.nix b/modules/podman/podman/default.nix new file mode 100644 index 0000000..2d23206 --- /dev/null +++ b/modules/podman/podman/default.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: +{ + virtualisation = { + podman = { + enable = true; + + dockerCompat = true; + + defaultNetwork.settings.dns_enabled = true; + }; + }; + } diff --git a/modules/pwnixos-packages/default.nix b/modules/pwnixos-packages/default.nix new file mode 100644 index 0000000..62589fd --- /dev/null +++ b/modules/pwnixos-packages/default.nix @@ -0,0 +1,14 @@ +{ pkgs, lib, config, ... }: + +with lib; +let cfg = config.modules.pwnixos-packages; + +in { + options.modules.pwnixos-packages = { enable = mkEnableOption "pwnixos-packages"; }; + config = mkIf cfg.enable { + #home.packages = with pkgs.nur.repos.exploitoverload; [ + # ADCSKiller + # polenum + #]; + }; + } diff --git a/modules/starship/default.nix b/modules/starship/default.nix deleted file mode 100644 index efa4ae7..0000000 --- a/modules/starship/default.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ -programs.starship = { - enable = true; - settings = { - aws.style = "bold #ffb86c"; - cmd_duration.style = "bold #f1fa8c"; - directory.style = "bold #50fa7b"; - hostname.style = "bold #ff5555"; - git_branch.style = "bold #ff79c6"; - git_status.style = "bold #ff5555"; - username = { - format = "[$user]($style) on "; - style_user = "bold #bd93f9"; - }; - character = { - success_symbol = "[λ](bold #f8f8f2)"; - error_symbol = "[λ](bold #ff5555)"; - }; - }; - }; -} diff --git a/modules/system/configuration.nix b/modules/system/configuration.nix new file mode 100644 index 0000000..49f9926 --- /dev/null +++ b/modules/system/configuration.nix @@ -0,0 +1,209 @@ +{ config, pkgs, inputs, lib, user, hostName, ... }: + +{ + + nixpkgs.config.allowUnfree = true; + +# Remove unecessary preinstalled packages + environment.defaultPackages = [ ]; + + environment.sessionVariables = { GTK_USE_PORTAL = "1"; }; + + services.printing.enable = true; + + programs.zsh.enable = true; + + programs.wireshark.enable = true; + + environment.etc.openvpn.source = "${pkgs.update-resolv-conf}/libexec/openvpn"; + +# Laptop-specific packages (the other ones are installed in `packages.nix`) + environment.systemPackages = with pkgs; [ + acpi + tlp + git + pciutils + greetd.tuigreet + virt-manager + glib-networking + ]; + + services.greetd = { + enable = true; + settings = { + default_session = { + command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --greeting 'Welcome to PwNixOS!' --cmd Hyprland"; + user = "${user}"; + }; + }; + }; + + services.openssh.enable = true; + systemd.services.sshd.wantedBy = lib.mkForce []; + + programs.ssh.startAgent = true; + + services.hardware.bolt.enable = true; + + hardware.logitech.wireless.enable = true; # For Logitech mices. TODO: Move to a module. + hardware.logitech.wireless.enableGraphical = true; + +# Adding XWayland support + programs.hyprland.xwayland.enable = true; + + virtualisation.libvirtd.enable = true; # For VMs using virt-manager. + +# Install fonts + fonts = { + packages = with pkgs; [ + jetbrains-mono + roboto + openmoji-color + (nerdfonts.override { fonts = [ "FiraCode" ]; }) + (nerdfonts.override { fonts = [ "FantasqueSansMono" ];}) + ]; + + fontconfig = { + hinting.autohint = true; + defaultFonts = { + emoji = [ "OpenMoji Color" ]; + }; + }; + }; + + +# Wayland stuff: enable XDG integration + xdg = { + icons.enable = true; + portal = { + enable = true; + extraPortals = with pkgs; [ + xdg-desktop-portal-hyprland + xdg-desktop-portal-gtk + ]; + }; + }; + + xdg.portal.config.common.default = "*"; + +# DBUS + + programs.dconf.enable = true; + services.dbus.packages = with pkgs; [ dconf ]; + services.dbus.enable = true; + + services.gvfs = { + enable = true; + package = lib.mkForce pkgs.gnome3.gvfs; + }; + +# Firmware Updater + services.fwupd.enable = true; + +# Nix settings, auto cleanup and enable flakes + nix = { + settings.auto-optimise-store = true; + settings.allowed-users = [ "${user}" ]; + gc = { + automatic = true; + dates = "weekly"; + options = "--delete-older-than 7d"; + }; + extraOptions = '' + experimental-features = nix-command flakes + keep-outputs = true + keep-derivations = true + ''; + }; + +# Boot settings: clean /tmp/, latest kernel and enable bootloader + boot = { + tmp.cleanOnBoot = true; + loader = { + systemd-boot.enable = true; + systemd-boot.editor = false; + efi.canTouchEfiVariables = true; + timeout = 0; + }; + }; + +# Set up locales (timezone and keyboard layout) + time.timeZone = "Europe/Ljubljana"; + i18n.defaultLocale = "en_US.UTF-8"; + console = { + font = "Lat2-Terminus16"; + keyMap = "en"; + }; + +# Set up user and enable sudo + users.users.${user} = { + isNormalUser = true; + extraGroups = [ "input" "wheel" "networkmanager" "libvirtd" "wireshark" ]; + initialHashedPassword = "$6$wqCHereET3WM6UIA$XeJIgGkmO2/zAkktN2JCx5hLNS3kSj6seVQBdSWoMeJ5MOrIha6B/HiDjHI4oKDKYhYVwjgQFqGpncU6OI7Ud/"; # password: d3fault + shell = pkgs.zsh; + }; + +# Set up networking and secure it + networking = { + networkmanager.enable = true; + hostName = "${hostName}"; + firewall.enable = false; # This one is necessary to expose ports to the netwok. Usefull for smbserver, responder, http.server, ... + extraHosts = + '' + ''; # For adding hosts. + }; + +# Set environment variables + environment.variables = { + NIXOS_CONFIG_DIR = "$HOME/.config/nixos/"; + NIXPKGS_ALLOW_INSECURE = "1"; + XDG_DATA_HOME = "$HOME/.local/share"; + GTK_RC_FILES = "$HOME/.local/share/gtk-1.0/gtkrc"; + GTK2_RC_FILES = "$HOME/.local/share/gtk-2.0/gtkrc"; + MOZ_ENABLE_WAYLAND = "1"; + EDITOR = "nvim"; + DIRENV_LOG_FORMAT = ""; + ANKI_WAYLAND = "1"; + DISABLE_QT5_COMPAT = "0"; + LIBSEAT_BACKEND = "logind"; + GTK_USE_PORTAL = "1"; + NIXPKGS_ALLOW_UNFREE = "1"; + }; + + environment.localBinInPath = true; +# Security + security = { + sudo.enable = true; +# Extra security + protectKernelImage = true; + pam.services.gtklock.text = lib.readFile "${pkgs.gtklock}/etc/pam.d/gtklock"; + }; + +# Sound (PipeWire) + sound.enable = true; + hardware.pulseaudio.enable = false; + security.rtkit.enable = true; + services.pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + }; + +# Disable bluetooth, enable pulseaudio, enable opengl (for Wayland) + hardware = { + bluetooth.enable = true; + opengl = { + enable = true; + driSupport = true; + }; + }; + + virtualisation.waydroid.enable = true; # For mobile app pentesting TODO: Move to module. + programs.adb.enable = true; + + services.blueman.enable = true; + +# Do not touch + system.stateVersion = "23.11"; +} diff --git a/modules/waybar/config b/modules/waybar/config new file mode 100644 index 0000000..95d4cc3 --- /dev/null +++ b/modules/waybar/config @@ -0,0 +1,93 @@ +{ + "layer": "top", // Waybar at top layer + "position": "top", // Waybar position (top|bottom|left|right) + // "width": 1280, // Waybar width + // Choose the order of the modules + "modules-left": ["hyprland/workspaces", "hyprland/window"], + "modules-center": ["custom/music"], + "modules-right": ["network" ,"pulseaudio", "backlight", "battery", "clock", "tray", "custom/lock", "custom/power"], + "hyprland/workspaces": { + "disable-scroll": true, + "sort-by-name": true, + "on-click": "activate", + "format": " {icon} ", + "format-icons": { + "default": "", + }, + }, + "hyprland/window": { + "format": "{}", + "rewrite": { + "(.*) — Mozilla Firefox": "󰈹 $1", + "(.*) — LibreWolf": " $1", + ".* Burp Suite .*?": " Burp Suite", + "(.*) - CherryTree (.*)": " CherryTree - $1", + ".*?zsh.*?": " Terminal" + }, + "separate-outputs": true, + "max-length": 47 + }, + "tray": { + "icon-size": 21, + "spacing": 10 + }, + "custom/music": { + "format": "󰎆 {}", + "escape": true, + "interval": 5, + "tooltip": false, + "exec": "playerctl metadata --format='{{ title }}'", + "on-click": "playerctl play-pause", + "max-length": 50 + }, + "clock": { + "timezone": "Europe/Madrid", + "tooltip-format": "{:%Y %B}\n{calendar}", + "format-alt": "󰃭 {:%d/%m/%Y}", + "format": "󰥔 {:%H:%M}" + }, + "backlight": { + "device": "intel_backlight", + "format": "{icon}", + "format-icons": ["", "", "", "", "", "", "", "", ""] + }, + "battery": { + "states": { + "warning": 30, + "critical": 15 + }, + "format": "{icon}", + "tooltip-format": "{capacity}%", + "format-charging": "󰂄", + "format-plugged": "󰚥", + "format-alt": "{icon}", + "format-icons": [ "󰂎", "󰁺", "󰁻", "󰁼", "󰁽", "󰁾", "󰁿", "󰂀", "󰂁", "󰂂", "󰁹" ] + }, + "pulseaudio": { + // "scroll-step": 1, // %, can be a float + "format": "{icon} {volume}%", + "format-muted": "", + "format-icons": { + "default": ["", "", " "] + }, + "on-click": "pavucontrol" + }, + "network": { + "format" : " {ipaddr}", + "format-wifi": " {ipaddr}", + "format-ethernet": "󰈀 {ipaddr}", + "format-disconected": " Disconnected", + "on-click": "wl-copy $(ip a | grep 'inet ' | tail -n 1 | grep -oP 'inet \\K[\\d.]+')", + "max-length": 50, + }, + "custom/lock": { + "tooltip": false, + "on-click": "sh -c '(sleep 0.5s; swaylock -f --screenshots --clock --indicator --indicator-radius 100 --indicator-thickness 7 --effect-blur 7x5 --grace 1 --fade-in 0.1)' & disown", + "format": "", + }, + "custom/power": { + "tooltip": false, + "on-click": "wlogout &", + "format": " " + } +} diff --git a/modules/waybar/default.nix b/modules/waybar/default.nix new file mode 100644 index 0000000..695cd6d --- /dev/null +++ b/modules/waybar/default.nix @@ -0,0 +1,21 @@ +{ inputs, lib, config, pkgs, ... }: + +with lib; +let cfg = config.modules.waybar; + +in { + options.modules.waybar = { enable = mkEnableOption "waybar"; }; + config = mkIf cfg.enable { + + programs.waybar = { + enable = true; + package = pkgs.waybar.overrideAttrs (oldAttrs: { + mesonFlags = oldAttrs.mesonFlags ++ [ "-Dexperimental=true" ]; + }); + }; + + home.file.".config/waybar/style.css".source = ./style.css; + home.file.".config/waybar/mocha.css".source = ./mocha.css; + home.file.".config/waybar/config".source = ./config; + }; +} diff --git a/modules/waybar/mocha.css b/modules/waybar/mocha.css new file mode 100644 index 0000000..98e218a --- /dev/null +++ b/modules/waybar/mocha.css @@ -0,0 +1,37 @@ +/* +* +* Catppuccin Mocha palette +* Maintainer: rubyowo +* +*/ + +@define-color base #1e1e2e; +@define-color mantle #181825; +@define-color crust #11111b; + +@define-color text #cdd6f4; +@define-color subtext0 #a6adc8; +@define-color subtext1 #bac2de; + +@define-color surface0 #313244; +@define-color surface1 #45475a; +@define-color surface2 #585b70; + +@define-color overlay0 #6c7086; +@define-color overlay1 #7f849c; +@define-color overlay2 #9399b2; + +@define-color blue #89b4fa; +@define-color lavender #b4befe; +@define-color sapphire #74c7ec; +@define-color sky #89dceb; +@define-color teal #94e2d5; +@define-color green #a6e3a1; +@define-color yellow #f9e2af; +@define-color peach #fab387; +@define-color maroon #eba0ac; +@define-color red #f38ba8; +@define-color mauve #cba6f7; +@define-color pink #f5c2e7; +@define-color flamingo #f2cdcd; +@define-color rosewater #f5e0dc; diff --git a/modules/waybar/style.css b/modules/waybar/style.css new file mode 100644 index 0000000..eb8c052 --- /dev/null +++ b/modules/waybar/style.css @@ -0,0 +1,122 @@ +@import "mocha.css"; + +* { + font-family: FantasqueSansMono Nerd Font; + font-size: 17px; + min-height: 0; +} + +#waybar { + background: transparent; + color: @text; + margin: 5px 5px; +} + +#workspaces { + border-radius: 1rem; + margin: 5px; + background-color: @surface0; + margin-left: 1rem; +} + +#workspaces button { + color: @lavender; + border-radius: 1rem; + padding: 0.4rem; + box-shadow: inset 0 -3px transparent; + transition: all 0.5s cubic-bezier(.55,-0.68,.48,1.68); + background-color: transparent; + margin-right: 0.4rem; +} + +#workspaces button.active { + color: @sky; + border-radius: 1rem; +} + +#workspaces button:hover { + color: @sapphire; + border-radius: 1rem; +} + +#custom-music, +#tray, +#backlight, +#clock, +#battery, +#pulseaudio, +#custom-lock, +#network, +#window, +#custom-power { + background-color: @surface0; + padding: 0.5rem 1rem; + margin: 5px 0; +} + +#clock { + color: @blue; + border-radius: 0px 1rem 1rem 0px; + margin-right: 1rem; +} + +#battery { + color: @green; +} + +#battery.charging { + color: @green; +} + +#battery.warning:not(.charging) { + color: @red; +} + +#backlight { + color: @yellow; +} + +#backlight, #battery { + border-radius: 0; +} + +#pulseaudio { + color: @maroon; + border-radius: 1rem 0px 0px 1rem; + margin-left: 1rem; +} + +#custom-music { + color: @mauve; + border-radius: 1rem; +} + +#window { + color: @green; + border-radius: 1rem; +} + +window#waybar.empty #window { + background-color: transparent; +} + +#network { + color: @peach; + border-radius: 1rem; +} + +#custom-lock { + border-radius: 1rem 0px 0px 1rem; + color: @lavender; +} + +#custom-power { + margin-right: 1rem; + border-radius: 0px 1rem 1rem 0px; + color: @red; +} + +#tray { + margin-right: 1rem; + border-radius: 1rem; +} diff --git a/modules/zsh/.p10k.zsh b/modules/zsh/.p10k.zsh new file mode 100644 index 0000000..796e689 --- /dev/null +++ b/modules/zsh/.p10k.zsh @@ -0,0 +1,1758 @@ +# Generated by Powerlevel10k configuration wizard on 2023-06-01 at 20:47 CEST. +# Based on romkatv/powerlevel10k/config/p10k-rainbow.zsh. +# Wizard options: nerdfont-v3 + powerline, small icons, rainbow, unicode, +# slanted separators, sharp heads, flat tails, 1 line, sparse, many icons, fluent, +# transient_prompt, instant_prompt=verbose. +# Type `p10k configure` to generate another config. +# +# Config for Powerlevel10k with powerline prompt style with colorful background. +# Type `p10k configure` to generate your own config based on it. +# +# Tip: Looking for a nice color? Here's a one-liner to print colormap. +# +# for i in {0..255}; do print -Pn "%K{$i} %k%F{$i}${(l:3::0:)i}%f " ${${(M)$((i%6)):#3}:+$'\n'}; done + +# Temporarily change options. +'builtin' 'local' '-a' 'p10k_config_opts' +[[ ! -o 'aliases' ]] || p10k_config_opts+=('aliases') +[[ ! -o 'sh_glob' ]] || p10k_config_opts+=('sh_glob') +[[ ! -o 'no_brace_expand' ]] || p10k_config_opts+=('no_brace_expand') +'builtin' 'setopt' 'no_aliases' 'no_sh_glob' 'brace_expand' + +() { + emulate -L zsh -o extended_glob + + # Unset all configuration options. This allows you to apply configuration changes without + # restarting zsh. Edit ~/.p10k.zsh and type `source ~/.p10k.zsh`. + unset -m '(POWERLEVEL9K_*|DEFAULT_USER)~POWERLEVEL9K_GITSTATUS_DIR' + + # Zsh >= 5.1 is required. + [[ $ZSH_VERSION == (5.<1->*|<6->.*) ]] || return + + # The list of segments shown on the left. Fill it with the most important segments. + typeset -g POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=( + os_icon # os identifier + dir # current directory + vcs # git status + # prompt_char # prompt symbol + ) + + # The list of segments shown on the right. Fill it with less important segments. + # Right prompt on the last prompt line (where you are typing your commands) gets + # automatically hidden when the input line reaches it. Right prompt above the + # last prompt line gets hidden if it would overlap with left prompt. + typeset -g POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=( + status # exit code of the last command + command_execution_time # duration of the last command + background_jobs # presence of background jobs + direnv # direnv status (https://direnv.net/) + asdf # asdf version manager (https://github.com/asdf-vm/asdf) + virtualenv # python virtual environment (https://docs.python.org/3/library/venv.html) + anaconda # conda environment (https://conda.io/) + pyenv # python environment (https://github.com/pyenv/pyenv) + goenv # go environment (https://github.com/syndbg/goenv) + nodenv # node.js version from nodenv (https://github.com/nodenv/nodenv) + nvm # node.js version from nvm (https://github.com/nvm-sh/nvm) + nodeenv # node.js environment (https://github.com/ekalinin/nodeenv) + # node_version # node.js version + # go_version # go version (https://golang.org) + # rust_version # rustc version (https://www.rust-lang.org) + # dotnet_version # .NET version (https://dotnet.microsoft.com) + # php_version # php version (https://www.php.net/) + # laravel_version # laravel php framework version (https://laravel.com/) + # java_version # java version (https://www.java.com/) + # package # name@version from package.json (https://docs.npmjs.com/files/package.json) + rbenv # ruby version from rbenv (https://github.com/rbenv/rbenv) + rvm # ruby version from rvm (https://rvm.io) + fvm # flutter version management (https://github.com/leoafarias/fvm) + luaenv # lua version from luaenv (https://github.com/cehoffman/luaenv) + jenv # java version from jenv (https://github.com/jenv/jenv) + plenv # perl version from plenv (https://github.com/tokuhirom/plenv) + perlbrew # perl version from perlbrew (https://github.com/gugod/App-perlbrew) + phpenv # php version from phpenv (https://github.com/phpenv/phpenv) + scalaenv # scala version from scalaenv (https://github.com/scalaenv/scalaenv) + haskell_stack # haskell version from stack (https://haskellstack.org/) + kubecontext # current kubernetes context (https://kubernetes.io/) + terraform # terraform workspace (https://www.terraform.io) + # terraform_version # terraform version (https://www.terraform.io) + aws # aws profile (https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html) + aws_eb_env # aws elastic beanstalk environment (https://aws.amazon.com/elasticbeanstalk/) + azure # azure account name (https://docs.microsoft.com/en-us/cli/azure) + gcloud # google cloud cli account and project (https://cloud.google.com/) + google_app_cred # google application credentials (https://cloud.google.com/docs/authentication/production) + toolbox # toolbox name (https://github.com/containers/toolbox) + context # user@hostname + nordvpn # nordvpn connection status, linux only (https://nordvpn.com/) + ranger # ranger shell (https://github.com/ranger/ranger) + nnn # nnn shell (https://github.com/jarun/nnn) + lf # lf shell (https://github.com/gokcehan/lf) + xplr # xplr shell (https://github.com/sayanarijit/xplr) + vim_shell # vim shell indicator (:sh) + midnight_commander # midnight commander shell (https://midnight-commander.org/) + nix_shell # nix shell (https://nixos.org/nixos/nix-pills/developing-with-nix-shell.html) + vi_mode # vi mode (you don't need this if you've enabled prompt_char) + # vpn_ip # virtual private network indicator + # load # CPU load + # disk_usage # disk usage + # ram # free RAM + # swap # used swap + todo # todo items (https://github.com/todotxt/todo.txt-cli) + timewarrior # timewarrior tracking status (https://timewarrior.net/) + taskwarrior # taskwarrior task count (https://taskwarrior.org/) + # cpu_arch # CPU architecture + # time # current time + # ip # ip address and bandwidth usage for a specified network interface + # public_ip # public IP address + # proxy # system-wide http/https/ftp proxy + # battery # internal battery + # wifi # wifi speed + # example # example user-defined segment (see prompt_example function below) + ) + + # Defines character set used by powerlevel10k. It's best to let `p10k configure` set it for you. + typeset -g POWERLEVEL9K_MODE=nerdfont-v3 + # When set to `moderate`, some icons will have an extra space after them. This is meant to avoid + # icon overlap when using non-monospace fonts. When set to `none`, spaces are not added. + typeset -g POWERLEVEL9K_ICON_PADDING=none + + # When set to true, icons appear before content on both sides of the prompt. When set + # to false, icons go after content. If empty or not set, icons go before content in the left + # prompt and after content in the right prompt. + # + # You can also override it for a specific segment: + # + # POWERLEVEL9K_STATUS_ICON_BEFORE_CONTENT=false + # + # Or for a specific segment in specific state: + # + # POWERLEVEL9K_DIR_NOT_WRITABLE_ICON_BEFORE_CONTENT=false + typeset -g POWERLEVEL9K_ICON_BEFORE_CONTENT= + + # Add an empty line before each prompt. + typeset -g POWERLEVEL9K_PROMPT_ADD_NEWLINE=true + + # Connect left prompt lines with these symbols. You'll probably want to use the same color + # as POWERLEVEL9K_MULTILINE_FIRST_PROMPT_GAP_FOREGROUND below. + typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX='%242F╭─' + typeset -g POWERLEVEL9K_MULTILINE_NEWLINE_PROMPT_PREFIX='%242F├─' + typeset -g POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX='%242F╰─' + # Connect right prompt lines with these symbols. + typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_SUFFIX='%242F─╮' + typeset -g POWERLEVEL9K_MULTILINE_NEWLINE_PROMPT_SUFFIX='%242F─┤' + typeset -g POWERLEVEL9K_MULTILINE_LAST_PROMPT_SUFFIX='%242F─╯' + + # Filler between left and right prompt on the first prompt line. You can set it to ' ', '·' or + # '─'. The last two make it easier to see the alignment between left and right prompt and to + # separate prompt from command output. You might want to set POWERLEVEL9K_PROMPT_ADD_NEWLINE=false + # for more compact prompt if using this option. + typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_GAP_CHAR=' ' + typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_GAP_BACKGROUND= + typeset -g POWERLEVEL9K_MULTILINE_NEWLINE_PROMPT_GAP_BACKGROUND= + if [[ $POWERLEVEL9K_MULTILINE_FIRST_PROMPT_GAP_CHAR != ' ' ]]; then + # The color of the filler. You'll probably want to match the color of POWERLEVEL9K_MULTILINE + # ornaments defined above. + typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_GAP_FOREGROUND=242 + # Start filler from the edge of the screen if there are no left segments on the first line. + typeset -g POWERLEVEL9K_EMPTY_LINE_LEFT_PROMPT_FIRST_SEGMENT_END_SYMBOL='%{%}' + # End filler on the edge of the screen if there are no right segments on the first line. + typeset -g POWERLEVEL9K_EMPTY_LINE_RIGHT_PROMPT_FIRST_SEGMENT_START_SYMBOL='%{%}' + fi + + # Separator between same-color segments on the left. + typeset -g POWERLEVEL9K_LEFT_SUBSEGMENT_SEPARATOR='\u2571' + # Separator between same-color segments on the right. + typeset -g POWERLEVEL9K_RIGHT_SUBSEGMENT_SEPARATOR='\u2571' + # Separator between different-color segments on the left. + typeset -g POWERLEVEL9K_LEFT_SEGMENT_SEPARATOR='\uE0BC' + # Separator between different-color segments on the right. + typeset -g POWERLEVEL9K_RIGHT_SEGMENT_SEPARATOR='\uE0BA' + # The right end of left prompt. + typeset -g POWERLEVEL9K_LEFT_PROMPT_LAST_SEGMENT_END_SYMBOL='\uE0B0' + # The left end of right prompt. + typeset -g POWERLEVEL9K_RIGHT_PROMPT_FIRST_SEGMENT_START_SYMBOL='\uE0B2' + # The left end of left prompt. + typeset -g POWERLEVEL9K_LEFT_PROMPT_FIRST_SEGMENT_START_SYMBOL='' + # The right end of right prompt. + typeset -g POWERLEVEL9K_RIGHT_PROMPT_LAST_SEGMENT_END_SYMBOL='' + # Left prompt terminator for lines without any segments. + typeset -g POWERLEVEL9K_EMPTY_LINE_LEFT_PROMPT_LAST_SEGMENT_END_SYMBOL= + + #################################[ os_icon: os identifier ]################################## + # OS identifier color. + typeset -g POWERLEVEL9K_OS_ICON_FOREGROUND=232 + typeset -g POWERLEVEL9K_OS_ICON_BACKGROUND=7 + # Custom icon. + # typeset -g POWERLEVEL9K_OS_ICON_CONTENT_EXPANSION='⭐' + + ################################[ prompt_char: prompt symbol ]################################ + # Transparent background. + typeset -g POWERLEVEL9K_PROMPT_CHAR_BACKGROUND= + # Green prompt symbol if the last command succeeded. + typeset -g POWERLEVEL9K_PROMPT_CHAR_OK_{VIINS,VICMD,VIVIS,VIOWR}_FOREGROUND=76 + # Red prompt symbol if the last command failed. + typeset -g POWERLEVEL9K_PROMPT_CHAR_ERROR_{VIINS,VICMD,VIVIS,VIOWR}_FOREGROUND=196 + # Default prompt symbol. + typeset -g POWERLEVEL9K_PROMPT_CHAR_{OK,ERROR}_VIINS_CONTENT_EXPANSION='❯' + # Prompt symbol in command vi mode. + typeset -g POWERLEVEL9K_PROMPT_CHAR_{OK,ERROR}_VICMD_CONTENT_EXPANSION='❮' + # Prompt symbol in visual vi mode. + typeset -g POWERLEVEL9K_PROMPT_CHAR_{OK,ERROR}_VIVIS_CONTENT_EXPANSION='V' + # Prompt symbol in overwrite vi mode. + typeset -g POWERLEVEL9K_PROMPT_CHAR_{OK,ERROR}_VIOWR_CONTENT_EXPANSION='▶' + typeset -g POWERLEVEL9K_PROMPT_CHAR_OVERWRITE_STATE=true + # No line terminator if prompt_char is the last segment. + typeset -g POWERLEVEL9K_PROMPT_CHAR_LEFT_PROMPT_LAST_SEGMENT_END_SYMBOL= + # No line introducer if prompt_char is the first segment. + typeset -g POWERLEVEL9K_PROMPT_CHAR_LEFT_PROMPT_FIRST_SEGMENT_START_SYMBOL= + # No surrounding whitespace. + typeset -g POWERLEVEL9K_PROMPT_CHAR_LEFT_{LEFT,RIGHT}_WHITESPACE= + + ##################################[ dir: current directory ]################################## + # Current directory background color. + typeset -g POWERLEVEL9K_DIR_BACKGROUND=4 + # Default current directory foreground color. + typeset -g POWERLEVEL9K_DIR_FOREGROUND=254 + # If directory is too long, shorten some of its segments to the shortest possible unique + # prefix. The shortened directory can be tab-completed to the original. + typeset -g POWERLEVEL9K_SHORTEN_STRATEGY=truncate_to_unique + # Replace removed segment suffixes with this symbol. + typeset -g POWERLEVEL9K_SHORTEN_DELIMITER= + # Color of the shortened directory segments. + typeset -g POWERLEVEL9K_DIR_SHORTENED_FOREGROUND=250 + # Color of the anchor directory segments. Anchor segments are never shortened. The first + # segment is always an anchor. + typeset -g POWERLEVEL9K_DIR_ANCHOR_FOREGROUND=255 + # Display anchor directory segments in bold. + typeset -g POWERLEVEL9K_DIR_ANCHOR_BOLD=true + # Don't shorten directories that contain any of these files. They are anchors. + local anchor_files=( + .bzr + .citc + .git + .hg + .node-version + .python-version + .go-version + .ruby-version + .lua-version + .java-version + .perl-version + .php-version + .tool-version + .shorten_folder_marker + .svn + .terraform + CVS + Cargo.toml + composer.json + go.mod + package.json + stack.yaml + ) + typeset -g POWERLEVEL9K_SHORTEN_FOLDER_MARKER="(${(j:|:)anchor_files})" + # If set to "first" ("last"), remove everything before the first (last) subdirectory that contains + # files matching $POWERLEVEL9K_SHORTEN_FOLDER_MARKER. For example, when the current directory is + # /foo/bar/git_repo/nested_git_repo/baz, prompt will display git_repo/nested_git_repo/baz (first) + # or nested_git_repo/baz (last). This assumes that git_repo and nested_git_repo contain markers + # and other directories don't. + # + # Optionally, "first" and "last" can be followed by ":" where is an integer. + # This moves the truncation point to the right (positive offset) or to the left (negative offset) + # relative to the marker. Plain "first" and "last" are equivalent to "first:0" and "last:0" + # respectively. + typeset -g POWERLEVEL9K_DIR_TRUNCATE_BEFORE_MARKER=false + # Don't shorten this many last directory segments. They are anchors. + typeset -g POWERLEVEL9K_SHORTEN_DIR_LENGTH=1 + # Shorten directory if it's longer than this even if there is space for it. The value can + # be either absolute (e.g., '80') or a percentage of terminal width (e.g, '50%'). If empty, + # directory will be shortened only when prompt doesn't fit or when other parameters demand it + # (see POWERLEVEL9K_DIR_MIN_COMMAND_COLUMNS and POWERLEVEL9K_DIR_MIN_COMMAND_COLUMNS_PCT below). + # If set to `0`, directory will always be shortened to its minimum length. + typeset -g POWERLEVEL9K_DIR_MAX_LENGTH=80 + # When `dir` segment is on the last prompt line, try to shorten it enough to leave at least this + # many columns for typing commands. + typeset -g POWERLEVEL9K_DIR_MIN_COMMAND_COLUMNS=40 + # When `dir` segment is on the last prompt line, try to shorten it enough to leave at least + # COLUMNS * POWERLEVEL9K_DIR_MIN_COMMAND_COLUMNS_PCT * 0.01 columns for typing commands. + typeset -g POWERLEVEL9K_DIR_MIN_COMMAND_COLUMNS_PCT=50 + # If set to true, embed a hyperlink into the directory. Useful for quickly + # opening a directory in the file manager simply by clicking the link. + # Can also be handy when the directory is shortened, as it allows you to see + # the full directory that was used in previous commands. + typeset -g POWERLEVEL9K_DIR_HYPERLINK=false + + # Enable special styling for non-writable and non-existent directories. See POWERLEVEL9K_LOCK_ICON + # and POWERLEVEL9K_DIR_CLASSES below. + typeset -g POWERLEVEL9K_DIR_SHOW_WRITABLE=v3 + + # The default icon shown next to non-writable and non-existent directories when + # POWERLEVEL9K_DIR_SHOW_WRITABLE is set to v3. + # typeset -g POWERLEVEL9K_LOCK_ICON='⭐' + + # POWERLEVEL9K_DIR_CLASSES allows you to specify custom icons and colors for different + # directories. It must be an array with 3 * N elements. Each triplet consists of: + # + # 1. A pattern against which the current directory ($PWD) is matched. Matching is done with + # extended_glob option enabled. + # 2. Directory class for the purpose of styling. + # 3. An empty string. + # + # Triplets are tried in order. The first triplet whose pattern matches $PWD wins. + # + # If POWERLEVEL9K_DIR_SHOW_WRITABLE is set to v3, non-writable and non-existent directories + # acquire class suffix _NOT_WRITABLE and NON_EXISTENT respectively. + # + # For example, given these settings: + # + # typeset -g POWERLEVEL9K_DIR_CLASSES=( + # '~/work(|/*)' WORK '' + # '~(|/*)' HOME '' + # '*' DEFAULT '') + # + # Whenever the current directory is ~/work or a subdirectory of ~/work, it gets styled with one + # of the following classes depending on its writability and existence: WORK, WORK_NOT_WRITABLE or + # WORK_NON_EXISTENT. + # + # Simply assigning classes to directories doesn't have any visible effects. It merely gives you an + # option to define custom colors and icons for different directory classes. + # + # # Styling for WORK. + # typeset -g POWERLEVEL9K_DIR_WORK_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_DIR_WORK_BACKGROUND=4 + # typeset -g POWERLEVEL9K_DIR_WORK_FOREGROUND=254 + # typeset -g POWERLEVEL9K_DIR_WORK_SHORTENED_FOREGROUND=250 + # typeset -g POWERLEVEL9K_DIR_WORK_ANCHOR_FOREGROUND=255 + # + # # Styling for WORK_NOT_WRITABLE. + # typeset -g POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_BACKGROUND=4 + # typeset -g POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_FOREGROUND=254 + # typeset -g POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_SHORTENED_FOREGROUND=250 + # typeset -g POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_ANCHOR_FOREGROUND=255 + # + # # Styling for WORK_NON_EXISTENT. + # typeset -g POWERLEVEL9K_DIR_WORK_NON_EXISTENT_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_DIR_WORK_NON_EXISTENT_BACKGROUND=4 + # typeset -g POWERLEVEL9K_DIR_WORK_NON_EXISTENT_FOREGROUND=254 + # typeset -g POWERLEVEL9K_DIR_WORK_NON_EXISTENT_SHORTENED_FOREGROUND=250 + # typeset -g POWERLEVEL9K_DIR_WORK_NON_EXISTENT_ANCHOR_FOREGROUND=255 + # + # If a styling parameter isn't explicitly defined for some class, it falls back to the classless + # parameter. For example, if POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_FOREGROUND is not set, it falls + # back to POWERLEVEL9K_DIR_FOREGROUND. + # + # typeset -g POWERLEVEL9K_DIR_CLASSES=() + + # Custom prefix. + # typeset -g POWERLEVEL9K_DIR_PREFIX='in ' + + #####################################[ vcs: git status ]###################################### + # Version control background colors. + typeset -g POWERLEVEL9K_VCS_CLEAN_BACKGROUND=2 + typeset -g POWERLEVEL9K_VCS_MODIFIED_BACKGROUND=3 + typeset -g POWERLEVEL9K_VCS_UNTRACKED_BACKGROUND=2 + typeset -g POWERLEVEL9K_VCS_CONFLICTED_BACKGROUND=3 + typeset -g POWERLEVEL9K_VCS_LOADING_BACKGROUND=8 + + # Branch icon. Set this parameter to '\UE0A0 ' for the popular Powerline branch icon. + typeset -g POWERLEVEL9K_VCS_BRANCH_ICON='\uF126 ' + + # Untracked files icon. It's really a question mark, your font isn't broken. + # Change the value of this parameter to show a different icon. + typeset -g POWERLEVEL9K_VCS_UNTRACKED_ICON='?' + + # Formatter for Git status. + # + # Example output: master wip ⇣42⇡42 *42 merge ~42 +42 !42 ?42. + # + # You can edit the function to customize how Git status looks. + # + # VCS_STATUS_* parameters are set by gitstatus plugin. See reference: + # https://github.com/romkatv/gitstatus/blob/master/gitstatus.plugin.zsh. + function my_git_formatter() { + emulate -L zsh + + if [[ -n $P9K_CONTENT ]]; then + # If P9K_CONTENT is not empty, use it. It's either "loading" or from vcs_info (not from + # gitstatus plugin). VCS_STATUS_* parameters are not available in this case. + typeset -g my_git_format=$P9K_CONTENT + return + fi + + # Styling for different parts of Git status. + local meta='%7F' # white foreground + local clean='%0F' # black foreground + local modified='%0F' # black foreground + local untracked='%0F' # black foreground + local conflicted='%1F' # red foreground + + local res + + if [[ -n $VCS_STATUS_LOCAL_BRANCH ]]; then + local branch=${(V)VCS_STATUS_LOCAL_BRANCH} + # If local branch name is at most 32 characters long, show it in full. + # Otherwise show the first 12 … the last 12. + # Tip: To always show local branch name in full without truncation, delete the next line. + (( $#branch > 32 )) && branch[13,-13]="…" # <-- this line + res+="${clean}${(g::)POWERLEVEL9K_VCS_BRANCH_ICON}${branch//\%/%%}" + fi + + if [[ -n $VCS_STATUS_TAG + # Show tag only if not on a branch. + # Tip: To always show tag, delete the next line. + && -z $VCS_STATUS_LOCAL_BRANCH # <-- this line + ]]; then + local tag=${(V)VCS_STATUS_TAG} + # If tag name is at most 32 characters long, show it in full. + # Otherwise show the first 12 … the last 12. + # Tip: To always show tag name in full without truncation, delete the next line. + (( $#tag > 32 )) && tag[13,-13]="…" # <-- this line + res+="${meta}#${clean}${tag//\%/%%}" + fi + + # Display the current Git commit if there is no branch and no tag. + # Tip: To always display the current Git commit, delete the next line. + [[ -z $VCS_STATUS_LOCAL_BRANCH && -z $VCS_STATUS_TAG ]] && # <-- this line + res+="${meta}@${clean}${VCS_STATUS_COMMIT[1,8]}" + + # Show tracking branch name if it differs from local branch. + if [[ -n ${VCS_STATUS_REMOTE_BRANCH:#$VCS_STATUS_LOCAL_BRANCH} ]]; then + res+="${meta}:${clean}${(V)VCS_STATUS_REMOTE_BRANCH//\%/%%}" + fi + + # Display "wip" if the latest commit's summary contains "wip" or "WIP". + if [[ $VCS_STATUS_COMMIT_SUMMARY == (|*[^[:alnum:]])(wip|WIP)(|[^[:alnum:]]*) ]]; then + res+=" ${modified}wip" + fi + + # ⇣42 if behind the remote. + (( VCS_STATUS_COMMITS_BEHIND )) && res+=" ${clean}⇣${VCS_STATUS_COMMITS_BEHIND}" + # ⇡42 if ahead of the remote; no leading space if also behind the remote: ⇣42⇡42. + (( VCS_STATUS_COMMITS_AHEAD && !VCS_STATUS_COMMITS_BEHIND )) && res+=" " + (( VCS_STATUS_COMMITS_AHEAD )) && res+="${clean}⇡${VCS_STATUS_COMMITS_AHEAD}" + # ⇠42 if behind the push remote. + (( VCS_STATUS_PUSH_COMMITS_BEHIND )) && res+=" ${clean}⇠${VCS_STATUS_PUSH_COMMITS_BEHIND}" + (( VCS_STATUS_PUSH_COMMITS_AHEAD && !VCS_STATUS_PUSH_COMMITS_BEHIND )) && res+=" " + # ⇢42 if ahead of the push remote; no leading space if also behind: ⇠42⇢42. + (( VCS_STATUS_PUSH_COMMITS_AHEAD )) && res+="${clean}⇢${VCS_STATUS_PUSH_COMMITS_AHEAD}" + # *42 if have stashes. + (( VCS_STATUS_STASHES )) && res+=" ${clean}*${VCS_STATUS_STASHES}" + # 'merge' if the repo is in an unusual state. + [[ -n $VCS_STATUS_ACTION ]] && res+=" ${conflicted}${VCS_STATUS_ACTION}" + # ~42 if have merge conflicts. + (( VCS_STATUS_NUM_CONFLICTED )) && res+=" ${conflicted}~${VCS_STATUS_NUM_CONFLICTED}" + # +42 if have staged changes. + (( VCS_STATUS_NUM_STAGED )) && res+=" ${modified}+${VCS_STATUS_NUM_STAGED}" + # !42 if have unstaged changes. + (( VCS_STATUS_NUM_UNSTAGED )) && res+=" ${modified}!${VCS_STATUS_NUM_UNSTAGED}" + # ?42 if have untracked files. It's really a question mark, your font isn't broken. + # See POWERLEVEL9K_VCS_UNTRACKED_ICON above if you want to use a different icon. + # Remove the next line if you don't want to see untracked files at all. + (( VCS_STATUS_NUM_UNTRACKED )) && res+=" ${untracked}${(g::)POWERLEVEL9K_VCS_UNTRACKED_ICON}${VCS_STATUS_NUM_UNTRACKED}" + # "─" if the number of unstaged files is unknown. This can happen due to + # POWERLEVEL9K_VCS_MAX_INDEX_SIZE_DIRTY (see below) being set to a non-negative number lower + # than the number of files in the Git index, or due to bash.showDirtyState being set to false + # in the repository config. The number of staged and untracked files may also be unknown + # in this case. + (( VCS_STATUS_HAS_UNSTAGED == -1 )) && res+=" ${modified}─" + + typeset -g my_git_format=$res + } + functions -M my_git_formatter 2>/dev/null + + # Don't count the number of unstaged, untracked and conflicted files in Git repositories with + # more than this many files in the index. Negative value means infinity. + # + # If you are working in Git repositories with tens of millions of files and seeing performance + # sagging, try setting POWERLEVEL9K_VCS_MAX_INDEX_SIZE_DIRTY to a number lower than the output + # of `git ls-files | wc -l`. Alternatively, add `bash.showDirtyState = false` to the repository's + # config: `git config bash.showDirtyState false`. + typeset -g POWERLEVEL9K_VCS_MAX_INDEX_SIZE_DIRTY=-1 + + # Don't show Git status in prompt for repositories whose workdir matches this pattern. + # For example, if set to '~', the Git repository at $HOME/.git will be ignored. + # Multiple patterns can be combined with '|': '~(|/foo)|/bar/baz/*'. + typeset -g POWERLEVEL9K_VCS_DISABLED_WORKDIR_PATTERN='~' + + # Disable the default Git status formatting. + typeset -g POWERLEVEL9K_VCS_DISABLE_GITSTATUS_FORMATTING=true + # Install our own Git status formatter. + typeset -g POWERLEVEL9K_VCS_CONTENT_EXPANSION='${$((my_git_formatter()))+${my_git_format}}' + # Enable counters for staged, unstaged, etc. + typeset -g POWERLEVEL9K_VCS_{STAGED,UNSTAGED,UNTRACKED,CONFLICTED,COMMITS_AHEAD,COMMITS_BEHIND}_MAX_NUM=-1 + + # Custom icon. + # typeset -g POWERLEVEL9K_VCS_VISUAL_IDENTIFIER_EXPANSION='⭐' + # Custom prefix. + typeset -g POWERLEVEL9K_VCS_PREFIX='on ' + + # Show status of repositories of these types. You can add svn and/or hg if you are + # using them. If you do, your prompt may become slow even when your current directory + # isn't in an svn or hg repository. + typeset -g POWERLEVEL9K_VCS_BACKENDS=(git) + + ##########################[ status: exit code of the last command ]########################### + # Enable OK_PIPE, ERROR_PIPE and ERROR_SIGNAL status states to allow us to enable, disable and + # style them independently from the regular OK and ERROR state. + typeset -g POWERLEVEL9K_STATUS_EXTENDED_STATES=true + + # Status on success. No content, just an icon. No need to show it if prompt_char is enabled as + # it will signify success by turning green. + typeset -g POWERLEVEL9K_STATUS_OK=true + typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION='✔' + typeset -g POWERLEVEL9K_STATUS_OK_FOREGROUND=2 + typeset -g POWERLEVEL9K_STATUS_OK_BACKGROUND=0 + + # Status when some part of a pipe command fails but the overall exit status is zero. It may look + # like this: 1|0. + typeset -g POWERLEVEL9K_STATUS_OK_PIPE=true + typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION='✔' + typeset -g POWERLEVEL9K_STATUS_OK_PIPE_FOREGROUND=2 + typeset -g POWERLEVEL9K_STATUS_OK_PIPE_BACKGROUND=0 + + # Status when it's just an error code (e.g., '1'). No need to show it if prompt_char is enabled as + # it will signify error by turning red. + typeset -g POWERLEVEL9K_STATUS_ERROR=true + typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION='✘' + typeset -g POWERLEVEL9K_STATUS_ERROR_FOREGROUND=3 + typeset -g POWERLEVEL9K_STATUS_ERROR_BACKGROUND=1 + + # Status when the last command was terminated by a signal. + typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL=true + # Use terse signal names: "INT" instead of "SIGINT(2)". + typeset -g POWERLEVEL9K_STATUS_VERBOSE_SIGNAME=false + typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION='✘' + typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_FOREGROUND=3 + typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_BACKGROUND=1 + + # Status when some part of a pipe command fails and the overall exit status is also non-zero. + # It may look like this: 1|0. + typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE=true + typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION='✘' + typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_FOREGROUND=3 + typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_BACKGROUND=1 + + ###################[ command_execution_time: duration of the last command ]################### + # Execution time color. + typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_FOREGROUND=0 + typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_BACKGROUND=3 + # Show duration of the last command if takes at least this many seconds. + typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_THRESHOLD=3 + # Show this many fractional digits. Zero means round to seconds. + typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_PRECISION=0 + # Duration format: 1d 2h 3m 4s. + typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_FORMAT='d h m s' + # Custom icon. + # typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_VISUAL_IDENTIFIER_EXPANSION='⭐' + # Custom prefix. + typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_PREFIX='took ' + + #######################[ background_jobs: presence of background jobs ]####################### + # Background jobs color. + typeset -g POWERLEVEL9K_BACKGROUND_JOBS_FOREGROUND=6 + typeset -g POWERLEVEL9K_BACKGROUND_JOBS_BACKGROUND=0 + # Don't show the number of background jobs. + typeset -g POWERLEVEL9K_BACKGROUND_JOBS_VERBOSE=false + # Custom icon. + # typeset -g POWERLEVEL9K_BACKGROUND_JOBS_VISUAL_IDENTIFIER_EXPANSION='⭐' + + #######################[ direnv: direnv status (https://direnv.net/) ]######################## + # Direnv color. + typeset -g POWERLEVEL9K_DIRENV_FOREGROUND=3 + typeset -g POWERLEVEL9K_DIRENV_BACKGROUND=0 + # Custom icon. + # typeset -g POWERLEVEL9K_DIRENV_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ###############[ asdf: asdf version manager (https://github.com/asdf-vm/asdf) ]############### + # Default asdf color. Only used to display tools for which there is no color override (see below). + # Tip: Override these parameters for ${TOOL} with POWERLEVEL9K_ASDF_${TOOL}_FOREGROUND and + # POWERLEVEL9K_ASDF_${TOOL}_BACKGROUND. + typeset -g POWERLEVEL9K_ASDF_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_BACKGROUND=7 + + # There are four parameters that can be used to hide asdf tools. Each parameter describes + # conditions under which a tool gets hidden. Parameters can hide tools but not unhide them. If at + # least one parameter decides to hide a tool, that tool gets hidden. If no parameter decides to + # hide a tool, it gets shown. + # + # Special note on the difference between POWERLEVEL9K_ASDF_SOURCES and + # POWERLEVEL9K_ASDF_PROMPT_ALWAYS_SHOW. Consider the effect of the following commands: + # + # asdf local python 3.8.1 + # asdf global python 3.8.1 + # + # After running both commands the current python version is 3.8.1 and its source is "local" as + # it takes precedence over "global". If POWERLEVEL9K_ASDF_PROMPT_ALWAYS_SHOW is set to false, + # it'll hide python version in this case because 3.8.1 is the same as the global version. + # POWERLEVEL9K_ASDF_SOURCES will hide python version only if the value of this parameter doesn't + # contain "local". + + # Hide tool versions that don't come from one of these sources. + # + # Available sources: + # + # - shell `asdf current` says "set by ASDF_${TOOL}_VERSION environment variable" + # - local `asdf current` says "set by /some/not/home/directory/file" + # - global `asdf current` says "set by /home/username/file" + # + # Note: If this parameter is set to (shell local global), it won't hide tools. + # Tip: Override this parameter for ${TOOL} with POWERLEVEL9K_ASDF_${TOOL}_SOURCES. + typeset -g POWERLEVEL9K_ASDF_SOURCES=(shell local global) + + # If set to false, hide tool versions that are the same as global. + # + # Note: The name of this parameter doesn't reflect its meaning at all. + # Note: If this parameter is set to true, it won't hide tools. + # Tip: Override this parameter for ${TOOL} with POWERLEVEL9K_ASDF_${TOOL}_PROMPT_ALWAYS_SHOW. + typeset -g POWERLEVEL9K_ASDF_PROMPT_ALWAYS_SHOW=false + + # If set to false, hide tool versions that are equal to "system". + # + # Note: If this parameter is set to true, it won't hide tools. + # Tip: Override this parameter for ${TOOL} with POWERLEVEL9K_ASDF_${TOOL}_SHOW_SYSTEM. + typeset -g POWERLEVEL9K_ASDF_SHOW_SYSTEM=true + + # If set to non-empty value, hide tools unless there is a file matching the specified file pattern + # in the current directory, or its parent directory, or its grandparent directory, and so on. + # + # Note: If this parameter is set to empty value, it won't hide tools. + # Note: SHOW_ON_UPGLOB isn't specific to asdf. It works with all prompt segments. + # Tip: Override this parameter for ${TOOL} with POWERLEVEL9K_ASDF_${TOOL}_SHOW_ON_UPGLOB. + # + # Example: Hide nodejs version when there is no package.json and no *.js files in the current + # directory, in `..`, in `../..` and so on. + # + # typeset -g POWERLEVEL9K_ASDF_NODEJS_SHOW_ON_UPGLOB='*.js|package.json' + typeset -g POWERLEVEL9K_ASDF_SHOW_ON_UPGLOB= + + # Ruby version from asdf. + typeset -g POWERLEVEL9K_ASDF_RUBY_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_RUBY_BACKGROUND=1 + # typeset -g POWERLEVEL9K_ASDF_RUBY_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_RUBY_SHOW_ON_UPGLOB='*.foo|*.bar' + + # Python version from asdf. + typeset -g POWERLEVEL9K_ASDF_PYTHON_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_PYTHON_BACKGROUND=4 + # typeset -g POWERLEVEL9K_ASDF_PYTHON_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_PYTHON_SHOW_ON_UPGLOB='*.foo|*.bar' + + # Go version from asdf. + typeset -g POWERLEVEL9K_ASDF_GOLANG_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_GOLANG_BACKGROUND=4 + # typeset -g POWERLEVEL9K_ASDF_GOLANG_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_GOLANG_SHOW_ON_UPGLOB='*.foo|*.bar' + + # Node.js version from asdf. + typeset -g POWERLEVEL9K_ASDF_NODEJS_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_NODEJS_BACKGROUND=2 + # typeset -g POWERLEVEL9K_ASDF_NODEJS_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_NODEJS_SHOW_ON_UPGLOB='*.foo|*.bar' + + # Rust version from asdf. + typeset -g POWERLEVEL9K_ASDF_RUST_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_RUST_BACKGROUND=208 + # typeset -g POWERLEVEL9K_ASDF_RUST_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_RUST_SHOW_ON_UPGLOB='*.foo|*.bar' + + # .NET Core version from asdf. + typeset -g POWERLEVEL9K_ASDF_DOTNET_CORE_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_DOTNET_CORE_BACKGROUND=5 + # typeset -g POWERLEVEL9K_ASDF_DOTNET_CORE_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_DOTNET_CORE_SHOW_ON_UPGLOB='*.foo|*.bar' + + # Flutter version from asdf. + typeset -g POWERLEVEL9K_ASDF_FLUTTER_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_FLUTTER_BACKGROUND=4 + # typeset -g POWERLEVEL9K_ASDF_FLUTTER_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_FLUTTER_SHOW_ON_UPGLOB='*.foo|*.bar' + + # Lua version from asdf. + typeset -g POWERLEVEL9K_ASDF_LUA_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_LUA_BACKGROUND=4 + # typeset -g POWERLEVEL9K_ASDF_LUA_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_LUA_SHOW_ON_UPGLOB='*.foo|*.bar' + + # Java version from asdf. + typeset -g POWERLEVEL9K_ASDF_JAVA_FOREGROUND=1 + typeset -g POWERLEVEL9K_ASDF_JAVA_BACKGROUND=7 + # typeset -g POWERLEVEL9K_ASDF_JAVA_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_JAVA_SHOW_ON_UPGLOB='*.foo|*.bar' + + # Perl version from asdf. + typeset -g POWERLEVEL9K_ASDF_PERL_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_PERL_BACKGROUND=4 + # typeset -g POWERLEVEL9K_ASDF_PERL_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_PERL_SHOW_ON_UPGLOB='*.foo|*.bar' + + # Erlang version from asdf. + typeset -g POWERLEVEL9K_ASDF_ERLANG_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_ERLANG_BACKGROUND=1 + # typeset -g POWERLEVEL9K_ASDF_ERLANG_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_ERLANG_SHOW_ON_UPGLOB='*.foo|*.bar' + + # Elixir version from asdf. + typeset -g POWERLEVEL9K_ASDF_ELIXIR_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_ELIXIR_BACKGROUND=5 + # typeset -g POWERLEVEL9K_ASDF_ELIXIR_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_ELIXIR_SHOW_ON_UPGLOB='*.foo|*.bar' + + # Postgres version from asdf. + typeset -g POWERLEVEL9K_ASDF_POSTGRES_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_POSTGRES_BACKGROUND=6 + # typeset -g POWERLEVEL9K_ASDF_POSTGRES_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_POSTGRES_SHOW_ON_UPGLOB='*.foo|*.bar' + + # PHP version from asdf. + typeset -g POWERLEVEL9K_ASDF_PHP_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_PHP_BACKGROUND=5 + # typeset -g POWERLEVEL9K_ASDF_PHP_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_PHP_SHOW_ON_UPGLOB='*.foo|*.bar' + + # Haskell version from asdf. + typeset -g POWERLEVEL9K_ASDF_HASKELL_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_HASKELL_BACKGROUND=3 + # typeset -g POWERLEVEL9K_ASDF_HASKELL_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_HASKELL_SHOW_ON_UPGLOB='*.foo|*.bar' + + # Julia version from asdf. + typeset -g POWERLEVEL9K_ASDF_JULIA_FOREGROUND=0 + typeset -g POWERLEVEL9K_ASDF_JULIA_BACKGROUND=2 + # typeset -g POWERLEVEL9K_ASDF_JULIA_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_ASDF_JULIA_SHOW_ON_UPGLOB='*.foo|*.bar' + + ##########[ nordvpn: nordvpn connection status, linux only (https://nordvpn.com/) ]########### + # NordVPN connection indicator color. + typeset -g POWERLEVEL9K_NORDVPN_FOREGROUND=7 + typeset -g POWERLEVEL9K_NORDVPN_BACKGROUND=4 + # Hide NordVPN connection indicator when not connected. + typeset -g POWERLEVEL9K_NORDVPN_{DISCONNECTED,CONNECTING,DISCONNECTING}_CONTENT_EXPANSION= + typeset -g POWERLEVEL9K_NORDVPN_{DISCONNECTED,CONNECTING,DISCONNECTING}_VISUAL_IDENTIFIER_EXPANSION= + # Custom icon. + # typeset -g POWERLEVEL9K_NORDVPN_VISUAL_IDENTIFIER_EXPANSION='⭐' + + #################[ ranger: ranger shell (https://github.com/ranger/ranger) ]################## + # Ranger shell color. + typeset -g POWERLEVEL9K_RANGER_FOREGROUND=3 + typeset -g POWERLEVEL9K_RANGER_BACKGROUND=0 + # Custom icon. + # typeset -g POWERLEVEL9K_RANGER_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ######################[ nnn: nnn shell (https://github.com/jarun/nnn) ]####################### + # Nnn shell color. + typeset -g POWERLEVEL9K_NNN_FOREGROUND=0 + typeset -g POWERLEVEL9K_NNN_BACKGROUND=6 + # Custom icon. + # typeset -g POWERLEVEL9K_NNN_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ######################[ lf: lf shell (https://github.com/gokcehan/lf) ]####################### + # lf shell color. + typeset -g POWERLEVEL9K_LF_FOREGROUND=0 + typeset -g POWERLEVEL9K_LF_BACKGROUND=6 + # Custom icon. + # typeset -g POWERLEVEL9K_LF_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ##################[ xplr: xplr shell (https://github.com/sayanarijit/xplr) ]################## + # xplr shell color. + typeset -g POWERLEVEL9K_XPLR_FOREGROUND=0 + typeset -g POWERLEVEL9K_XPLR_BACKGROUND=6 + # Custom icon. + # typeset -g POWERLEVEL9K_XPLR_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ###########################[ vim_shell: vim shell indicator (:sh) ]########################### + # Vim shell indicator color. + typeset -g POWERLEVEL9K_VIM_SHELL_FOREGROUND=0 + typeset -g POWERLEVEL9K_VIM_SHELL_BACKGROUND=2 + # Custom icon. + # typeset -g POWERLEVEL9K_VIM_SHELL_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ######[ midnight_commander: midnight commander shell (https://midnight-commander.org/) ]###### + # Midnight Commander shell color. + typeset -g POWERLEVEL9K_MIDNIGHT_COMMANDER_FOREGROUND=3 + typeset -g POWERLEVEL9K_MIDNIGHT_COMMANDER_BACKGROUND=0 + # Custom icon. + # typeset -g POWERLEVEL9K_MIDNIGHT_COMMANDER_VISUAL_IDENTIFIER_EXPANSION='⭐' + + #[ nix_shell: nix shell (https://nixos.org/nixos/nix-pills/developing-with-nix-shell.html) ]## + # Nix shell color. + typeset -g POWERLEVEL9K_NIX_SHELL_FOREGROUND=0 + typeset -g POWERLEVEL9K_NIX_SHELL_BACKGROUND=4 + + # Display the icon of nix_shell if PATH contains a subdirectory of /nix/store. + # typeset -g POWERLEVEL9K_NIX_SHELL_INFER_FROM_PATH=false + + # Tip: If you want to see just the icon without "pure" and "impure", uncomment the next line. + # typeset -g POWERLEVEL9K_NIX_SHELL_CONTENT_EXPANSION= + + # Custom icon. + # typeset -g POWERLEVEL9K_NIX_SHELL_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ##################################[ disk_usage: disk usage ]################################## + # Colors for different levels of disk usage. + typeset -g POWERLEVEL9K_DISK_USAGE_NORMAL_FOREGROUND=3 + typeset -g POWERLEVEL9K_DISK_USAGE_NORMAL_BACKGROUND=0 + typeset -g POWERLEVEL9K_DISK_USAGE_WARNING_FOREGROUND=0 + typeset -g POWERLEVEL9K_DISK_USAGE_WARNING_BACKGROUND=3 + typeset -g POWERLEVEL9K_DISK_USAGE_CRITICAL_FOREGROUND=7 + typeset -g POWERLEVEL9K_DISK_USAGE_CRITICAL_BACKGROUND=1 + # Thresholds for different levels of disk usage (percentage points). + typeset -g POWERLEVEL9K_DISK_USAGE_WARNING_LEVEL=90 + typeset -g POWERLEVEL9K_DISK_USAGE_CRITICAL_LEVEL=95 + # If set to true, hide disk usage when below $POWERLEVEL9K_DISK_USAGE_WARNING_LEVEL percent. + typeset -g POWERLEVEL9K_DISK_USAGE_ONLY_WARNING=false + # Custom icon. + # typeset -g POWERLEVEL9K_DISK_USAGE_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ###########[ vi_mode: vi mode (you don't need this if you've enabled prompt_char) ]########### + # Foreground color. + typeset -g POWERLEVEL9K_VI_MODE_FOREGROUND=0 + # Text and color for normal (a.k.a. command) vi mode. + typeset -g POWERLEVEL9K_VI_COMMAND_MODE_STRING=NORMAL + typeset -g POWERLEVEL9K_VI_MODE_NORMAL_BACKGROUND=2 + # Text and color for visual vi mode. + typeset -g POWERLEVEL9K_VI_VISUAL_MODE_STRING=VISUAL + typeset -g POWERLEVEL9K_VI_MODE_VISUAL_BACKGROUND=4 + # Text and color for overtype (a.k.a. overwrite and replace) vi mode. + typeset -g POWERLEVEL9K_VI_OVERWRITE_MODE_STRING=OVERTYPE + typeset -g POWERLEVEL9K_VI_MODE_OVERWRITE_BACKGROUND=3 + # Text and color for insert vi mode. + typeset -g POWERLEVEL9K_VI_INSERT_MODE_STRING= + typeset -g POWERLEVEL9K_VI_MODE_INSERT_FOREGROUND=8 + + ######################################[ ram: free RAM ]####################################### + # RAM color. + typeset -g POWERLEVEL9K_RAM_FOREGROUND=0 + typeset -g POWERLEVEL9K_RAM_BACKGROUND=3 + # Custom icon. + # typeset -g POWERLEVEL9K_RAM_VISUAL_IDENTIFIER_EXPANSION='⭐' + + #####################################[ swap: used swap ]###################################### + # Swap color. + typeset -g POWERLEVEL9K_SWAP_FOREGROUND=0 + typeset -g POWERLEVEL9K_SWAP_BACKGROUND=3 + # Custom icon. + # typeset -g POWERLEVEL9K_SWAP_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ######################################[ load: CPU load ]###################################### + # Show average CPU load over this many last minutes. Valid values are 1, 5 and 15. + typeset -g POWERLEVEL9K_LOAD_WHICH=5 + # Load color when load is under 50%. + typeset -g POWERLEVEL9K_LOAD_NORMAL_FOREGROUND=0 + typeset -g POWERLEVEL9K_LOAD_NORMAL_BACKGROUND=2 + # Load color when load is between 50% and 70%. + typeset -g POWERLEVEL9K_LOAD_WARNING_FOREGROUND=0 + typeset -g POWERLEVEL9K_LOAD_WARNING_BACKGROUND=3 + # Load color when load is over 70%. + typeset -g POWERLEVEL9K_LOAD_CRITICAL_FOREGROUND=0 + typeset -g POWERLEVEL9K_LOAD_CRITICAL_BACKGROUND=1 + # Custom icon. + # typeset -g POWERLEVEL9K_LOAD_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ################[ todo: todo items (https://github.com/todotxt/todo.txt-cli) ]################ + # Todo color. + typeset -g POWERLEVEL9K_TODO_FOREGROUND=0 + typeset -g POWERLEVEL9K_TODO_BACKGROUND=8 + # Hide todo when the total number of tasks is zero. + typeset -g POWERLEVEL9K_TODO_HIDE_ZERO_TOTAL=true + # Hide todo when the number of tasks after filtering is zero. + typeset -g POWERLEVEL9K_TODO_HIDE_ZERO_FILTERED=false + + # Todo format. The following parameters are available within the expansion. + # + # - P9K_TODO_TOTAL_TASK_COUNT The total number of tasks. + # - P9K_TODO_FILTERED_TASK_COUNT The number of tasks after filtering. + # + # These variables correspond to the last line of the output of `todo.sh -p ls`: + # + # TODO: 24 of 42 tasks shown + # + # Here 24 is P9K_TODO_FILTERED_TASK_COUNT and 42 is P9K_TODO_TOTAL_TASK_COUNT. + # + # typeset -g POWERLEVEL9K_TODO_CONTENT_EXPANSION='$P9K_TODO_FILTERED_TASK_COUNT' + + # Custom icon. + # typeset -g POWERLEVEL9K_TODO_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ###########[ timewarrior: timewarrior tracking status (https://timewarrior.net/) ]############ + # Timewarrior color. + typeset -g POWERLEVEL9K_TIMEWARRIOR_FOREGROUND=255 + typeset -g POWERLEVEL9K_TIMEWARRIOR_BACKGROUND=8 + + # If the tracked task is longer than 24 characters, truncate and append "…". + # Tip: To always display tasks without truncation, delete the following parameter. + # Tip: To hide task names and display just the icon when time tracking is enabled, set the + # value of the following parameter to "". + typeset -g POWERLEVEL9K_TIMEWARRIOR_CONTENT_EXPANSION='${P9K_CONTENT:0:24}${${P9K_CONTENT:24}:+…}' + + # Custom icon. + # typeset -g POWERLEVEL9K_TIMEWARRIOR_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ##############[ taskwarrior: taskwarrior task count (https://taskwarrior.org/) ]############## + # Taskwarrior color. + typeset -g POWERLEVEL9K_TASKWARRIOR_FOREGROUND=0 + typeset -g POWERLEVEL9K_TASKWARRIOR_BACKGROUND=6 + + # Taskwarrior segment format. The following parameters are available within the expansion. + # + # - P9K_TASKWARRIOR_PENDING_COUNT The number of pending tasks: `task +PENDING count`. + # - P9K_TASKWARRIOR_OVERDUE_COUNT The number of overdue tasks: `task +OVERDUE count`. + # + # Zero values are represented as empty parameters. + # + # The default format: + # + # '${P9K_TASKWARRIOR_OVERDUE_COUNT:+"!$P9K_TASKWARRIOR_OVERDUE_COUNT/"}$P9K_TASKWARRIOR_PENDING_COUNT' + # + # typeset -g POWERLEVEL9K_TASKWARRIOR_CONTENT_EXPANSION='$P9K_TASKWARRIOR_PENDING_COUNT' + + # Custom icon. + # typeset -g POWERLEVEL9K_TASKWARRIOR_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ################################[ cpu_arch: CPU architecture ]################################ + # CPU architecture color. + typeset -g POWERLEVEL9K_CPU_ARCH_FOREGROUND=0 + typeset -g POWERLEVEL9K_CPU_ARCH_BACKGROUND=3 + + # Hide the segment when on a specific CPU architecture. + # typeset -g POWERLEVEL9K_CPU_ARCH_X86_64_CONTENT_EXPANSION= + # typeset -g POWERLEVEL9K_CPU_ARCH_X86_64_VISUAL_IDENTIFIER_EXPANSION= + + # Custom icon. + # typeset -g POWERLEVEL9K_CPU_ARCH_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ##################################[ context: user@hostname ]################################## + # Context color when running with privileges. + typeset -g POWERLEVEL9K_CONTEXT_ROOT_FOREGROUND=1 + typeset -g POWERLEVEL9K_CONTEXT_ROOT_BACKGROUND=0 + # Context color in SSH without privileges. + typeset -g POWERLEVEL9K_CONTEXT_{REMOTE,REMOTE_SUDO}_FOREGROUND=3 + typeset -g POWERLEVEL9K_CONTEXT_{REMOTE,REMOTE_SUDO}_BACKGROUND=0 + # Default context color (no privileges, no SSH). + typeset -g POWERLEVEL9K_CONTEXT_FOREGROUND=3 + typeset -g POWERLEVEL9K_CONTEXT_BACKGROUND=0 + + # Context format when running with privileges: user@hostname. + typeset -g POWERLEVEL9K_CONTEXT_ROOT_TEMPLATE='%n@%m' + # Context format when in SSH without privileges: user@hostname. + typeset -g POWERLEVEL9K_CONTEXT_{REMOTE,REMOTE_SUDO}_TEMPLATE='%n@%m' + # Default context format (no privileges, no SSH): user@hostname. + typeset -g POWERLEVEL9K_CONTEXT_TEMPLATE='%n@%m' + + # Don't show context unless running with privileges or in SSH. + # Tip: Remove the next line to always show context. + typeset -g POWERLEVEL9K_CONTEXT_{DEFAULT,SUDO}_{CONTENT,VISUAL_IDENTIFIER}_EXPANSION= + + # Custom icon. + # typeset -g POWERLEVEL9K_CONTEXT_VISUAL_IDENTIFIER_EXPANSION='⭐' + # Custom prefix. + typeset -g POWERLEVEL9K_CONTEXT_PREFIX='with ' + + ###[ virtualenv: python virtual environment (https://docs.python.org/3/library/venv.html) ]### + # Python virtual environment color. + typeset -g POWERLEVEL9K_VIRTUALENV_FOREGROUND=0 + typeset -g POWERLEVEL9K_VIRTUALENV_BACKGROUND=4 + # Don't show Python version next to the virtual environment name. + typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_PYTHON_VERSION=false + # If set to "false", won't show virtualenv if pyenv is already shown. + # If set to "if-different", won't show virtualenv if it's the same as pyenv. + typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_WITH_PYENV=false + # Separate environment name from Python version only with a space. + typeset -g POWERLEVEL9K_VIRTUALENV_{LEFT,RIGHT}_DELIMITER= + # Custom icon. + # typeset -g POWERLEVEL9K_VIRTUALENV_VISUAL_IDENTIFIER_EXPANSION='⭐' + + #####################[ anaconda: conda environment (https://conda.io/) ]###################### + # Anaconda environment color. + typeset -g POWERLEVEL9K_ANACONDA_FOREGROUND=0 + typeset -g POWERLEVEL9K_ANACONDA_BACKGROUND=4 + + # Anaconda segment format. The following parameters are available within the expansion. + # + # - CONDA_PREFIX Absolute path to the active Anaconda/Miniconda environment. + # - CONDA_DEFAULT_ENV Name of the active Anaconda/Miniconda environment. + # - CONDA_PROMPT_MODIFIER Configurable prompt modifier (see below). + # - P9K_ANACONDA_PYTHON_VERSION Current python version (python --version). + # + # CONDA_PROMPT_MODIFIER can be configured with the following command: + # + # conda config --set env_prompt '({default_env}) ' + # + # The last argument is a Python format string that can use the following variables: + # + # - prefix The same as CONDA_PREFIX. + # - default_env The same as CONDA_DEFAULT_ENV. + # - name The last segment of CONDA_PREFIX. + # - stacked_env Comma-separated list of names in the environment stack. The first element is + # always the same as default_env. + # + # Note: '({default_env}) ' is the default value of env_prompt. + # + # The default value of POWERLEVEL9K_ANACONDA_CONTENT_EXPANSION expands to $CONDA_PROMPT_MODIFIER + # without the surrounding parentheses, or to the last path component of CONDA_PREFIX if the former + # is empty. + typeset -g POWERLEVEL9K_ANACONDA_CONTENT_EXPANSION='${${${${CONDA_PROMPT_MODIFIER#\(}% }%\)}:-${CONDA_PREFIX:t}}' + + # Custom icon. + # typeset -g POWERLEVEL9K_ANACONDA_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ################[ pyenv: python environment (https://github.com/pyenv/pyenv) ]################ + # Pyenv color. + typeset -g POWERLEVEL9K_PYENV_FOREGROUND=0 + typeset -g POWERLEVEL9K_PYENV_BACKGROUND=4 + # Hide python version if it doesn't come from one of these sources. + typeset -g POWERLEVEL9K_PYENV_SOURCES=(shell local global) + # If set to false, hide python version if it's the same as global: + # $(pyenv version-name) == $(pyenv global). + typeset -g POWERLEVEL9K_PYENV_PROMPT_ALWAYS_SHOW=false + # If set to false, hide python version if it's equal to "system". + typeset -g POWERLEVEL9K_PYENV_SHOW_SYSTEM=true + + # Pyenv segment format. The following parameters are available within the expansion. + # + # - P9K_CONTENT Current pyenv environment (pyenv version-name). + # - P9K_PYENV_PYTHON_VERSION Current python version (python --version). + # + # The default format has the following logic: + # + # 1. Display just "$P9K_CONTENT" if it's equal to "$P9K_PYENV_PYTHON_VERSION" or + # starts with "$P9K_PYENV_PYTHON_VERSION/". + # 2. Otherwise display "$P9K_CONTENT $P9K_PYENV_PYTHON_VERSION". + typeset -g POWERLEVEL9K_PYENV_CONTENT_EXPANSION='${P9K_CONTENT}${${P9K_CONTENT:#$P9K_PYENV_PYTHON_VERSION(|/*)}:+ $P9K_PYENV_PYTHON_VERSION}' + + # Custom icon. + # typeset -g POWERLEVEL9K_PYENV_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ################[ goenv: go environment (https://github.com/syndbg/goenv) ]################ + # Goenv color. + typeset -g POWERLEVEL9K_GOENV_FOREGROUND=0 + typeset -g POWERLEVEL9K_GOENV_BACKGROUND=4 + # Hide go version if it doesn't come from one of these sources. + typeset -g POWERLEVEL9K_GOENV_SOURCES=(shell local global) + # If set to false, hide go version if it's the same as global: + # $(goenv version-name) == $(goenv global). + typeset -g POWERLEVEL9K_GOENV_PROMPT_ALWAYS_SHOW=false + # If set to false, hide go version if it's equal to "system". + typeset -g POWERLEVEL9K_GOENV_SHOW_SYSTEM=true + # Custom icon. + # typeset -g POWERLEVEL9K_GOENV_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ##########[ nodenv: node.js version from nodenv (https://github.com/nodenv/nodenv) ]########## + # Nodenv color. + typeset -g POWERLEVEL9K_NODENV_FOREGROUND=2 + typeset -g POWERLEVEL9K_NODENV_BACKGROUND=0 + # Hide node version if it doesn't come from one of these sources. + typeset -g POWERLEVEL9K_NODENV_SOURCES=(shell local global) + # If set to false, hide node version if it's the same as global: + # $(nodenv version-name) == $(nodenv global). + typeset -g POWERLEVEL9K_NODENV_PROMPT_ALWAYS_SHOW=false + # If set to false, hide node version if it's equal to "system". + typeset -g POWERLEVEL9K_NODENV_SHOW_SYSTEM=true + # Custom icon. + # typeset -g POWERLEVEL9K_NODENV_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ##############[ nvm: node.js version from nvm (https://github.com/nvm-sh/nvm) ]############### + # Nvm color. + typeset -g POWERLEVEL9K_NVM_FOREGROUND=0 + typeset -g POWERLEVEL9K_NVM_BACKGROUND=5 + # Custom icon. + # typeset -g POWERLEVEL9K_NVM_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ############[ nodeenv: node.js environment (https://github.com/ekalinin/nodeenv) ]############ + # Nodeenv color. + typeset -g POWERLEVEL9K_NODEENV_FOREGROUND=2 + typeset -g POWERLEVEL9K_NODEENV_BACKGROUND=0 + # Don't show Node version next to the environment name. + typeset -g POWERLEVEL9K_NODEENV_SHOW_NODE_VERSION=false + # Separate environment name from Node version only with a space. + typeset -g POWERLEVEL9K_NODEENV_{LEFT,RIGHT}_DELIMITER= + # Custom icon. + # typeset -g POWERLEVEL9K_NODEENV_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ##############################[ node_version: node.js version ]############################### + # Node version color. + typeset -g POWERLEVEL9K_NODE_VERSION_FOREGROUND=7 + typeset -g POWERLEVEL9K_NODE_VERSION_BACKGROUND=2 + # Show node version only when in a directory tree containing package.json. + typeset -g POWERLEVEL9K_NODE_VERSION_PROJECT_ONLY=true + # Custom icon. + # typeset -g POWERLEVEL9K_NODE_VERSION_VISUAL_IDENTIFIER_EXPANSION='⭐' + + #######################[ go_version: go version (https://golang.org) ]######################## + # Go version color. + typeset -g POWERLEVEL9K_GO_VERSION_FOREGROUND=255 + typeset -g POWERLEVEL9K_GO_VERSION_BACKGROUND=2 + # Show go version only when in a go project subdirectory. + typeset -g POWERLEVEL9K_GO_VERSION_PROJECT_ONLY=true + # Custom icon. + # typeset -g POWERLEVEL9K_GO_VERSION_VISUAL_IDENTIFIER_EXPANSION='⭐' + + #################[ rust_version: rustc version (https://www.rust-lang.org) ]################## + # Rust version color. + typeset -g POWERLEVEL9K_RUST_VERSION_FOREGROUND=0 + typeset -g POWERLEVEL9K_RUST_VERSION_BACKGROUND=208 + # Show rust version only when in a rust project subdirectory. + typeset -g POWERLEVEL9K_RUST_VERSION_PROJECT_ONLY=true + # Custom icon. + # typeset -g POWERLEVEL9K_RUST_VERSION_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ###############[ dotnet_version: .NET version (https://dotnet.microsoft.com) ]################ + # .NET version color. + typeset -g POWERLEVEL9K_DOTNET_VERSION_FOREGROUND=7 + typeset -g POWERLEVEL9K_DOTNET_VERSION_BACKGROUND=5 + # Show .NET version only when in a .NET project subdirectory. + typeset -g POWERLEVEL9K_DOTNET_VERSION_PROJECT_ONLY=true + # Custom icon. + # typeset -g POWERLEVEL9K_DOTNET_VERSION_VISUAL_IDENTIFIER_EXPANSION='⭐' + + #####################[ php_version: php version (https://www.php.net/) ]###################### + # PHP version color. + typeset -g POWERLEVEL9K_PHP_VERSION_FOREGROUND=0 + typeset -g POWERLEVEL9K_PHP_VERSION_BACKGROUND=5 + # Show PHP version only when in a PHP project subdirectory. + typeset -g POWERLEVEL9K_PHP_VERSION_PROJECT_ONLY=true + # Custom icon. + # typeset -g POWERLEVEL9K_PHP_VERSION_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ##########[ laravel_version: laravel php framework version (https://laravel.com/) ]########### + # Laravel version color. + typeset -g POWERLEVEL9K_LARAVEL_VERSION_FOREGROUND=1 + typeset -g POWERLEVEL9K_LARAVEL_VERSION_BACKGROUND=7 + # Custom icon. + # typeset -g POWERLEVEL9K_LARAVEL_VERSION_VISUAL_IDENTIFIER_EXPANSION='⭐' + + #############[ rbenv: ruby version from rbenv (https://github.com/rbenv/rbenv) ]############## + # Rbenv color. + typeset -g POWERLEVEL9K_RBENV_FOREGROUND=0 + typeset -g POWERLEVEL9K_RBENV_BACKGROUND=1 + # Hide ruby version if it doesn't come from one of these sources. + typeset -g POWERLEVEL9K_RBENV_SOURCES=(shell local global) + # If set to false, hide ruby version if it's the same as global: + # $(rbenv version-name) == $(rbenv global). + typeset -g POWERLEVEL9K_RBENV_PROMPT_ALWAYS_SHOW=false + # If set to false, hide ruby version if it's equal to "system". + typeset -g POWERLEVEL9K_RBENV_SHOW_SYSTEM=true + # Custom icon. + # typeset -g POWERLEVEL9K_RBENV_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ####################[ java_version: java version (https://www.java.com/) ]#################### + # Java version color. + typeset -g POWERLEVEL9K_JAVA_VERSION_FOREGROUND=1 + typeset -g POWERLEVEL9K_JAVA_VERSION_BACKGROUND=7 + # Show java version only when in a java project subdirectory. + typeset -g POWERLEVEL9K_JAVA_VERSION_PROJECT_ONLY=true + # Show brief version. + typeset -g POWERLEVEL9K_JAVA_VERSION_FULL=false + # Custom icon. + # typeset -g POWERLEVEL9K_JAVA_VERSION_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ###[ package: name@version from package.json (https://docs.npmjs.com/files/package.json) ]#### + # Package color. + typeset -g POWERLEVEL9K_PACKAGE_FOREGROUND=0 + typeset -g POWERLEVEL9K_PACKAGE_BACKGROUND=6 + + # Package format. The following parameters are available within the expansion. + # + # - P9K_PACKAGE_NAME The value of `name` field in package.json. + # - P9K_PACKAGE_VERSION The value of `version` field in package.json. + # + # typeset -g POWERLEVEL9K_PACKAGE_CONTENT_EXPANSION='${P9K_PACKAGE_NAME//\%/%%}@${P9K_PACKAGE_VERSION//\%/%%}' + + # Custom icon. + # typeset -g POWERLEVEL9K_PACKAGE_VISUAL_IDENTIFIER_EXPANSION='⭐' + + #######################[ rvm: ruby version from rvm (https://rvm.io) ]######################## + # Rvm color. + typeset -g POWERLEVEL9K_RVM_FOREGROUND=0 + typeset -g POWERLEVEL9K_RVM_BACKGROUND=240 + # Don't show @gemset at the end. + typeset -g POWERLEVEL9K_RVM_SHOW_GEMSET=false + # Don't show ruby- at the front. + typeset -g POWERLEVEL9K_RVM_SHOW_PREFIX=false + # Custom icon. + # typeset -g POWERLEVEL9K_RVM_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ###########[ fvm: flutter version management (https://github.com/leoafarias/fvm) ]############ + # Fvm color. + typeset -g POWERLEVEL9K_FVM_FOREGROUND=0 + typeset -g POWERLEVEL9K_FVM_BACKGROUND=4 + # Custom icon. + # typeset -g POWERLEVEL9K_FVM_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ##########[ luaenv: lua version from luaenv (https://github.com/cehoffman/luaenv) ]########### + # Lua color. + typeset -g POWERLEVEL9K_LUAENV_FOREGROUND=0 + typeset -g POWERLEVEL9K_LUAENV_BACKGROUND=4 + # Hide lua version if it doesn't come from one of these sources. + typeset -g POWERLEVEL9K_LUAENV_SOURCES=(shell local global) + # If set to false, hide lua version if it's the same as global: + # $(luaenv version-name) == $(luaenv global). + typeset -g POWERLEVEL9K_LUAENV_PROMPT_ALWAYS_SHOW=false + # If set to false, hide lua version if it's equal to "system". + typeset -g POWERLEVEL9K_LUAENV_SHOW_SYSTEM=true + # Custom icon. + # typeset -g POWERLEVEL9K_LUAENV_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ###############[ jenv: java version from jenv (https://github.com/jenv/jenv) ]################ + # Java color. + typeset -g POWERLEVEL9K_JENV_FOREGROUND=1 + typeset -g POWERLEVEL9K_JENV_BACKGROUND=7 + # Hide java version if it doesn't come from one of these sources. + typeset -g POWERLEVEL9K_JENV_SOURCES=(shell local global) + # If set to false, hide java version if it's the same as global: + # $(jenv version-name) == $(jenv global). + typeset -g POWERLEVEL9K_JENV_PROMPT_ALWAYS_SHOW=false + # If set to false, hide java version if it's equal to "system". + typeset -g POWERLEVEL9K_JENV_SHOW_SYSTEM=true + # Custom icon. + # typeset -g POWERLEVEL9K_JENV_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ###########[ plenv: perl version from plenv (https://github.com/tokuhirom/plenv) ]############ + # Perl color. + typeset -g POWERLEVEL9K_PLENV_FOREGROUND=0 + typeset -g POWERLEVEL9K_PLENV_BACKGROUND=4 + # Hide perl version if it doesn't come from one of these sources. + typeset -g POWERLEVEL9K_PLENV_SOURCES=(shell local global) + # If set to false, hide perl version if it's the same as global: + # $(plenv version-name) == $(plenv global). + typeset -g POWERLEVEL9K_PLENV_PROMPT_ALWAYS_SHOW=false + # If set to false, hide perl version if it's equal to "system". + typeset -g POWERLEVEL9K_PLENV_SHOW_SYSTEM=true + # Custom icon. + # typeset -g POWERLEVEL9K_PLENV_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ###########[ perlbrew: perl version from perlbrew (https://github.com/gugod/App-perlbrew) ]############ + # Perlbrew color. + typeset -g POWERLEVEL9K_PERLBREW_FOREGROUND=67 + # Show perlbrew version only when in a perl project subdirectory. + typeset -g POWERLEVEL9K_PERLBREW_PROJECT_ONLY=true + # Don't show "perl-" at the front. + typeset -g POWERLEVEL9K_PERLBREW_SHOW_PREFIX=false + # Custom icon. + # typeset -g POWERLEVEL9K_PERLBREW_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ############[ phpenv: php version from phpenv (https://github.com/phpenv/phpenv) ]############ + # PHP color. + typeset -g POWERLEVEL9K_PHPENV_FOREGROUND=0 + typeset -g POWERLEVEL9K_PHPENV_BACKGROUND=5 + # Hide php version if it doesn't come from one of these sources. + typeset -g POWERLEVEL9K_PHPENV_SOURCES=(shell local global) + # If set to false, hide php version if it's the same as global: + # $(phpenv version-name) == $(phpenv global). + typeset -g POWERLEVEL9K_PHPENV_PROMPT_ALWAYS_SHOW=false + # If set to false, hide PHP version if it's equal to "system". + typeset -g POWERLEVEL9K_PHPENV_SHOW_SYSTEM=true + # Custom icon. + # typeset -g POWERLEVEL9K_PHPENV_VISUAL_IDENTIFIER_EXPANSION='⭐' + + #######[ scalaenv: scala version from scalaenv (https://github.com/scalaenv/scalaenv) ]####### + # Scala color. + typeset -g POWERLEVEL9K_SCALAENV_FOREGROUND=0 + typeset -g POWERLEVEL9K_SCALAENV_BACKGROUND=1 + # Hide scala version if it doesn't come from one of these sources. + typeset -g POWERLEVEL9K_SCALAENV_SOURCES=(shell local global) + # If set to false, hide scala version if it's the same as global: + # $(scalaenv version-name) == $(scalaenv global). + typeset -g POWERLEVEL9K_SCALAENV_PROMPT_ALWAYS_SHOW=false + # If set to false, hide scala version if it's equal to "system". + typeset -g POWERLEVEL9K_SCALAENV_SHOW_SYSTEM=true + # Custom icon. + # typeset -g POWERLEVEL9K_SCALAENV_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ##########[ haskell_stack: haskell version from stack (https://haskellstack.org/) ]########### + # Haskell color. + typeset -g POWERLEVEL9K_HASKELL_STACK_FOREGROUND=0 + typeset -g POWERLEVEL9K_HASKELL_STACK_BACKGROUND=3 + + # Hide haskell version if it doesn't come from one of these sources. + # + # shell: version is set by STACK_YAML + # local: version is set by stack.yaml up the directory tree + # global: version is set by the implicit global project (~/.stack/global-project/stack.yaml) + typeset -g POWERLEVEL9K_HASKELL_STACK_SOURCES=(shell local) + # If set to false, hide haskell version if it's the same as in the implicit global project. + typeset -g POWERLEVEL9K_HASKELL_STACK_ALWAYS_SHOW=true + # Custom icon. + # typeset -g POWERLEVEL9K_HASKELL_STACK_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ################[ terraform: terraform workspace (https://www.terraform.io) ]################# + # Don't show terraform workspace if it's literally "default". + typeset -g POWERLEVEL9K_TERRAFORM_SHOW_DEFAULT=false + # POWERLEVEL9K_TERRAFORM_CLASSES is an array with even number of elements. The first element + # in each pair defines a pattern against which the current terraform workspace gets matched. + # More specifically, it's P9K_CONTENT prior to the application of context expansion (see below) + # that gets matched. If you unset all POWERLEVEL9K_TERRAFORM_*CONTENT_EXPANSION parameters, + # you'll see this value in your prompt. The second element of each pair in + # POWERLEVEL9K_TERRAFORM_CLASSES defines the workspace class. Patterns are tried in order. The + # first match wins. + # + # For example, given these settings: + # + # typeset -g POWERLEVEL9K_TERRAFORM_CLASSES=( + # '*prod*' PROD + # '*test*' TEST + # '*' OTHER) + # + # If your current terraform workspace is "project_test", its class is TEST because "project_test" + # doesn't match the pattern '*prod*' but does match '*test*'. + # + # You can define different colors, icons and content expansions for different classes: + # + # typeset -g POWERLEVEL9K_TERRAFORM_TEST_FOREGROUND=2 + # typeset -g POWERLEVEL9K_TERRAFORM_TEST_BACKGROUND=0 + # typeset -g POWERLEVEL9K_TERRAFORM_TEST_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_TERRAFORM_TEST_CONTENT_EXPANSION='> ${P9K_CONTENT} <' + typeset -g POWERLEVEL9K_TERRAFORM_CLASSES=( + # '*prod*' PROD # These values are examples that are unlikely + # '*test*' TEST # to match your needs. Customize them as needed. + '*' OTHER) + typeset -g POWERLEVEL9K_TERRAFORM_OTHER_FOREGROUND=4 + typeset -g POWERLEVEL9K_TERRAFORM_OTHER_BACKGROUND=0 + # typeset -g POWERLEVEL9K_TERRAFORM_OTHER_VISUAL_IDENTIFIER_EXPANSION='⭐' + + #############[ terraform_version: terraform version (https://www.terraform.io) ]############## + # Terraform version color. + typeset -g POWERLEVEL9K_TERRAFORM_VERSION_FOREGROUND=4 + typeset -g POWERLEVEL9K_TERRAFORM_VERSION_BACKGROUND=0 + # Custom icon. + # typeset -g POWERLEVEL9K_TERRAFORM_VERSION_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ################[ terraform_version: It shows active terraform version (https://www.terraform.io) ]################# + typeset -g POWERLEVEL9K_TERRAFORM_VERSION_SHOW_ON_COMMAND='terraform|tf' + + #############[ kubecontext: current kubernetes context (https://kubernetes.io/) ]############# + # Show kubecontext only when the command you are typing invokes one of these tools. + # Tip: Remove the next line to always show kubecontext. + typeset -g POWERLEVEL9K_KUBECONTEXT_SHOW_ON_COMMAND='kubectl|helm|kubens|kubectx|oc|istioctl|kogito|k9s|helmfile|flux|fluxctl|stern|kubeseal|skaffold|kubent|kubecolor' + + # Kubernetes context classes for the purpose of using different colors, icons and expansions with + # different contexts. + # + # POWERLEVEL9K_KUBECONTEXT_CLASSES is an array with even number of elements. The first element + # in each pair defines a pattern against which the current kubernetes context gets matched. + # More specifically, it's P9K_CONTENT prior to the application of context expansion (see below) + # that gets matched. If you unset all POWERLEVEL9K_KUBECONTEXT_*CONTENT_EXPANSION parameters, + # you'll see this value in your prompt. The second element of each pair in + # POWERLEVEL9K_KUBECONTEXT_CLASSES defines the context class. Patterns are tried in order. The + # first match wins. + # + # For example, given these settings: + # + # typeset -g POWERLEVEL9K_KUBECONTEXT_CLASSES=( + # '*prod*' PROD + # '*test*' TEST + # '*' DEFAULT) + # + # If your current kubernetes context is "deathray-testing/default", its class is TEST + # because "deathray-testing/default" doesn't match the pattern '*prod*' but does match '*test*'. + # + # You can define different colors, icons and content expansions for different classes: + # + # typeset -g POWERLEVEL9K_KUBECONTEXT_TEST_FOREGROUND=0 + # typeset -g POWERLEVEL9K_KUBECONTEXT_TEST_BACKGROUND=2 + # typeset -g POWERLEVEL9K_KUBECONTEXT_TEST_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_KUBECONTEXT_TEST_CONTENT_EXPANSION='> ${P9K_CONTENT} <' + typeset -g POWERLEVEL9K_KUBECONTEXT_CLASSES=( + # '*prod*' PROD # These values are examples that are unlikely + # '*test*' TEST # to match your needs. Customize them as needed. + '*' DEFAULT) + typeset -g POWERLEVEL9K_KUBECONTEXT_DEFAULT_FOREGROUND=7 + typeset -g POWERLEVEL9K_KUBECONTEXT_DEFAULT_BACKGROUND=5 + # typeset -g POWERLEVEL9K_KUBECONTEXT_DEFAULT_VISUAL_IDENTIFIER_EXPANSION='⭐' + + # Use POWERLEVEL9K_KUBECONTEXT_CONTENT_EXPANSION to specify the content displayed by kubecontext + # segment. Parameter expansions are very flexible and fast, too. See reference: + # http://zsh.sourceforge.net/Doc/Release/Expansion.html#Parameter-Expansion. + # + # Within the expansion the following parameters are always available: + # + # - P9K_CONTENT The content that would've been displayed if there was no content + # expansion defined. + # - P9K_KUBECONTEXT_NAME The current context's name. Corresponds to column NAME in the + # output of `kubectl config get-contexts`. + # - P9K_KUBECONTEXT_CLUSTER The current context's cluster. Corresponds to column CLUSTER in the + # output of `kubectl config get-contexts`. + # - P9K_KUBECONTEXT_NAMESPACE The current context's namespace. Corresponds to column NAMESPACE + # in the output of `kubectl config get-contexts`. If there is no + # namespace, the parameter is set to "default". + # - P9K_KUBECONTEXT_USER The current context's user. Corresponds to column AUTHINFO in the + # output of `kubectl config get-contexts`. + # + # If the context points to Google Kubernetes Engine (GKE) or Elastic Kubernetes Service (EKS), + # the following extra parameters are available: + # + # - P9K_KUBECONTEXT_CLOUD_NAME Either "gke" or "eks". + # - P9K_KUBECONTEXT_CLOUD_ACCOUNT Account/project ID. + # - P9K_KUBECONTEXT_CLOUD_ZONE Availability zone. + # - P9K_KUBECONTEXT_CLOUD_CLUSTER Cluster. + # + # P9K_KUBECONTEXT_CLOUD_* parameters are derived from P9K_KUBECONTEXT_CLUSTER. For example, + # if P9K_KUBECONTEXT_CLUSTER is "gke_my-account_us-east1-a_my-cluster-01": + # + # - P9K_KUBECONTEXT_CLOUD_NAME=gke + # - P9K_KUBECONTEXT_CLOUD_ACCOUNT=my-account + # - P9K_KUBECONTEXT_CLOUD_ZONE=us-east1-a + # - P9K_KUBECONTEXT_CLOUD_CLUSTER=my-cluster-01 + # + # If P9K_KUBECONTEXT_CLUSTER is "arn:aws:eks:us-east-1:123456789012:cluster/my-cluster-01": + # + # - P9K_KUBECONTEXT_CLOUD_NAME=eks + # - P9K_KUBECONTEXT_CLOUD_ACCOUNT=123456789012 + # - P9K_KUBECONTEXT_CLOUD_ZONE=us-east-1 + # - P9K_KUBECONTEXT_CLOUD_CLUSTER=my-cluster-01 + typeset -g POWERLEVEL9K_KUBECONTEXT_DEFAULT_CONTENT_EXPANSION= + # Show P9K_KUBECONTEXT_CLOUD_CLUSTER if it's not empty and fall back to P9K_KUBECONTEXT_NAME. + POWERLEVEL9K_KUBECONTEXT_DEFAULT_CONTENT_EXPANSION+='${P9K_KUBECONTEXT_CLOUD_CLUSTER:-${P9K_KUBECONTEXT_NAME}}' + # Append the current context's namespace if it's not "default". + POWERLEVEL9K_KUBECONTEXT_DEFAULT_CONTENT_EXPANSION+='${${:-/$P9K_KUBECONTEXT_NAMESPACE}:#/default}' + + # Custom prefix. + typeset -g POWERLEVEL9K_KUBECONTEXT_PREFIX='at ' + + #[ aws: aws profile (https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html) ]# + # Show aws only when the command you are typing invokes one of these tools. + # Tip: Remove the next line to always show aws. + typeset -g POWERLEVEL9K_AWS_SHOW_ON_COMMAND='aws|awless|terraform|pulumi|terragrunt' + + # POWERLEVEL9K_AWS_CLASSES is an array with even number of elements. The first element + # in each pair defines a pattern against which the current AWS profile gets matched. + # More specifically, it's P9K_CONTENT prior to the application of context expansion (see below) + # that gets matched. If you unset all POWERLEVEL9K_AWS_*CONTENT_EXPANSION parameters, + # you'll see this value in your prompt. The second element of each pair in + # POWERLEVEL9K_AWS_CLASSES defines the profile class. Patterns are tried in order. The + # first match wins. + # + # For example, given these settings: + # + # typeset -g POWERLEVEL9K_AWS_CLASSES=( + # '*prod*' PROD + # '*test*' TEST + # '*' DEFAULT) + # + # If your current AWS profile is "company_test", its class is TEST + # because "company_test" doesn't match the pattern '*prod*' but does match '*test*'. + # + # You can define different colors, icons and content expansions for different classes: + # + # typeset -g POWERLEVEL9K_AWS_TEST_FOREGROUND=28 + # typeset -g POWERLEVEL9K_AWS_TEST_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_AWS_TEST_CONTENT_EXPANSION='> ${P9K_CONTENT} <' + typeset -g POWERLEVEL9K_AWS_CLASSES=( + # '*prod*' PROD # These values are examples that are unlikely + # '*test*' TEST # to match your needs. Customize them as needed. + '*' DEFAULT) + typeset -g POWERLEVEL9K_AWS_DEFAULT_FOREGROUND=7 + typeset -g POWERLEVEL9K_AWS_DEFAULT_BACKGROUND=1 + # typeset -g POWERLEVEL9K_AWS_DEFAULT_VISUAL_IDENTIFIER_EXPANSION='⭐' + + # AWS segment format. The following parameters are available within the expansion. + # + # - P9K_AWS_PROFILE The name of the current AWS profile. + # - P9K_AWS_REGION The region associated with the current AWS profile. + typeset -g POWERLEVEL9K_AWS_CONTENT_EXPANSION='${P9K_AWS_PROFILE//\%/%%}${P9K_AWS_REGION:+ ${P9K_AWS_REGION//\%/%%}}' + + #[ aws_eb_env: aws elastic beanstalk environment (https://aws.amazon.com/elasticbeanstalk/) ]# + # AWS Elastic Beanstalk environment color. + typeset -g POWERLEVEL9K_AWS_EB_ENV_FOREGROUND=2 + typeset -g POWERLEVEL9K_AWS_EB_ENV_BACKGROUND=0 + # Custom icon. + # typeset -g POWERLEVEL9K_AWS_EB_ENV_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ##########[ azure: azure account name (https://docs.microsoft.com/en-us/cli/azure) ]########## + # Show azure only when the command you are typing invokes one of these tools. + # Tip: Remove the next line to always show azure. + typeset -g POWERLEVEL9K_AZURE_SHOW_ON_COMMAND='az|terraform|pulumi|terragrunt' + # Azure account name color. + typeset -g POWERLEVEL9K_AZURE_FOREGROUND=7 + typeset -g POWERLEVEL9K_AZURE_BACKGROUND=4 + # Custom icon. + # typeset -g POWERLEVEL9K_AZURE_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ##########[ gcloud: google cloud account and project (https://cloud.google.com/) ]########### + # Show gcloud only when the command you are typing invokes one of these tools. + # Tip: Remove the next line to always show gcloud. + typeset -g POWERLEVEL9K_GCLOUD_SHOW_ON_COMMAND='gcloud|gcs|gsutil' + # Google cloud color. + typeset -g POWERLEVEL9K_GCLOUD_FOREGROUND=7 + typeset -g POWERLEVEL9K_GCLOUD_BACKGROUND=4 + + # Google cloud format. Change the value of POWERLEVEL9K_GCLOUD_PARTIAL_CONTENT_EXPANSION and/or + # POWERLEVEL9K_GCLOUD_COMPLETE_CONTENT_EXPANSION if the default is too verbose or not informative + # enough. You can use the following parameters in the expansions. Each of them corresponds to the + # output of `gcloud` tool. + # + # Parameter | Source + # -------------------------|-------------------------------------------------------------------- + # P9K_GCLOUD_CONFIGURATION | gcloud config configurations list --format='value(name)' + # P9K_GCLOUD_ACCOUNT | gcloud config get-value account + # P9K_GCLOUD_PROJECT_ID | gcloud config get-value project + # P9K_GCLOUD_PROJECT_NAME | gcloud projects describe $P9K_GCLOUD_PROJECT_ID --format='value(name)' + # + # Note: ${VARIABLE//\%/%%} expands to ${VARIABLE} with all occurrences of '%' replaced with '%%'. + # + # Obtaining project name requires sending a request to Google servers. This can take a long time + # and even fail. When project name is unknown, P9K_GCLOUD_PROJECT_NAME is not set and gcloud + # prompt segment is in state PARTIAL. When project name gets known, P9K_GCLOUD_PROJECT_NAME gets + # set and gcloud prompt segment transitions to state COMPLETE. + # + # You can customize the format, icon and colors of gcloud segment separately for states PARTIAL + # and COMPLETE. You can also hide gcloud in state PARTIAL by setting + # POWERLEVEL9K_GCLOUD_PARTIAL_VISUAL_IDENTIFIER_EXPANSION and + # POWERLEVEL9K_GCLOUD_PARTIAL_CONTENT_EXPANSION to empty. + typeset -g POWERLEVEL9K_GCLOUD_PARTIAL_CONTENT_EXPANSION='${P9K_GCLOUD_PROJECT_ID//\%/%%}' + typeset -g POWERLEVEL9K_GCLOUD_COMPLETE_CONTENT_EXPANSION='${P9K_GCLOUD_PROJECT_NAME//\%/%%}' + + # Send a request to Google (by means of `gcloud projects describe ...`) to obtain project name + # this often. Negative value disables periodic polling. In this mode project name is retrieved + # only when the current configuration, account or project id changes. + typeset -g POWERLEVEL9K_GCLOUD_REFRESH_PROJECT_NAME_SECONDS=60 + + # Custom icon. + # typeset -g POWERLEVEL9K_GCLOUD_VISUAL_IDENTIFIER_EXPANSION='⭐' + + #[ google_app_cred: google application credentials (https://cloud.google.com/docs/authentication/production) ]# + # Show google_app_cred only when the command you are typing invokes one of these tools. + # Tip: Remove the next line to always show google_app_cred. + typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_SHOW_ON_COMMAND='terraform|pulumi|terragrunt' + + # Google application credentials classes for the purpose of using different colors, icons and + # expansions with different credentials. + # + # POWERLEVEL9K_GOOGLE_APP_CRED_CLASSES is an array with even number of elements. The first + # element in each pair defines a pattern against which the current kubernetes context gets + # matched. More specifically, it's P9K_CONTENT prior to the application of context expansion + # (see below) that gets matched. If you unset all POWERLEVEL9K_GOOGLE_APP_CRED_*CONTENT_EXPANSION + # parameters, you'll see this value in your prompt. The second element of each pair in + # POWERLEVEL9K_GOOGLE_APP_CRED_CLASSES defines the context class. Patterns are tried in order. + # The first match wins. + # + # For example, given these settings: + # + # typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_CLASSES=( + # '*:*prod*:*' PROD + # '*:*test*:*' TEST + # '*' DEFAULT) + # + # If your current Google application credentials is "service_account deathray-testing x@y.com", + # its class is TEST because it doesn't match the pattern '* *prod* *' but does match '* *test* *'. + # + # You can define different colors, icons and content expansions for different classes: + # + # typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_TEST_FOREGROUND=28 + # typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_TEST_VISUAL_IDENTIFIER_EXPANSION='⭐' + # typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_TEST_CONTENT_EXPANSION='$P9K_GOOGLE_APP_CRED_PROJECT_ID' + typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_CLASSES=( + # '*:*prod*:*' PROD # These values are examples that are unlikely + # '*:*test*:*' TEST # to match your needs. Customize them as needed. + '*' DEFAULT) + typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_DEFAULT_FOREGROUND=7 + typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_DEFAULT_BACKGROUND=4 + # typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_DEFAULT_VISUAL_IDENTIFIER_EXPANSION='⭐' + + # Use POWERLEVEL9K_GOOGLE_APP_CRED_CONTENT_EXPANSION to specify the content displayed by + # google_app_cred segment. Parameter expansions are very flexible and fast, too. See reference: + # http://zsh.sourceforge.net/Doc/Release/Expansion.html#Parameter-Expansion. + # + # You can use the following parameters in the expansion. Each of them corresponds to one of the + # fields in the JSON file pointed to by GOOGLE_APPLICATION_CREDENTIALS. + # + # Parameter | JSON key file field + # ---------------------------------+--------------- + # P9K_GOOGLE_APP_CRED_TYPE | type + # P9K_GOOGLE_APP_CRED_PROJECT_ID | project_id + # P9K_GOOGLE_APP_CRED_CLIENT_EMAIL | client_email + # + # Note: ${VARIABLE//\%/%%} expands to ${VARIABLE} with all occurrences of '%' replaced by '%%'. + typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_DEFAULT_CONTENT_EXPANSION='${P9K_GOOGLE_APP_CRED_PROJECT_ID//\%/%%}' + + ##############[ toolbox: toolbox name (https://github.com/containers/toolbox) ]############### + # Toolbox color. + typeset -g POWERLEVEL9K_TOOLBOX_FOREGROUND=0 + typeset -g POWERLEVEL9K_TOOLBOX_BACKGROUND=3 + # Don't display the name of the toolbox if it matches fedora-toolbox-*. + typeset -g POWERLEVEL9K_TOOLBOX_CONTENT_EXPANSION='${P9K_TOOLBOX_NAME:#fedora-toolbox-*}' + # Custom icon. + # typeset -g POWERLEVEL9K_TOOLBOX_VISUAL_IDENTIFIER_EXPANSION='⭐' + # Custom prefix. + typeset -g POWERLEVEL9K_TOOLBOX_PREFIX='in ' + + ###############################[ public_ip: public IP address ]############################### + # Public IP color. + typeset -g POWERLEVEL9K_PUBLIC_IP_FOREGROUND=7 + typeset -g POWERLEVEL9K_PUBLIC_IP_BACKGROUND=0 + # Custom icon. + # typeset -g POWERLEVEL9K_PUBLIC_IP_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ########################[ vpn_ip: virtual private network indicator ]######################### + # VPN IP color. + typeset -g POWERLEVEL9K_VPN_IP_FOREGROUND=0 + typeset -g POWERLEVEL9K_VPN_IP_BACKGROUND=6 + # When on VPN, show just an icon without the IP address. + # Tip: To display the private IP address when on VPN, remove the next line. + typeset -g POWERLEVEL9K_VPN_IP_CONTENT_EXPANSION= + # Regular expression for the VPN network interface. Run `ifconfig` or `ip -4 a show` while on VPN + # to see the name of the interface. + typeset -g POWERLEVEL9K_VPN_IP_INTERFACE='(gpd|wg|(.*tun)|tailscale)[0-9]*|(zt.*)' + # If set to true, show one segment per matching network interface. If set to false, show only + # one segment corresponding to the first matching network interface. + # Tip: If you set it to true, you'll probably want to unset POWERLEVEL9K_VPN_IP_CONTENT_EXPANSION. + typeset -g POWERLEVEL9K_VPN_IP_SHOW_ALL=false + # Custom icon. + # typeset -g POWERLEVEL9K_VPN_IP_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ###########[ ip: ip address and bandwidth usage for a specified network interface ]########### + # IP color. + typeset -g POWERLEVEL9K_IP_BACKGROUND=4 + typeset -g POWERLEVEL9K_IP_FOREGROUND=0 + # The following parameters are accessible within the expansion: + # + # Parameter | Meaning + # ----------------------+------------------------------------------- + # P9K_IP_IP | IP address + # P9K_IP_INTERFACE | network interface + # P9K_IP_RX_BYTES | total number of bytes received + # P9K_IP_TX_BYTES | total number of bytes sent + # P9K_IP_RX_BYTES_DELTA | number of bytes received since last prompt + # P9K_IP_TX_BYTES_DELTA | number of bytes sent since last prompt + # P9K_IP_RX_RATE | receive rate (since last prompt) + # P9K_IP_TX_RATE | send rate (since last prompt) + typeset -g POWERLEVEL9K_IP_CONTENT_EXPANSION='${P9K_IP_RX_RATE:+⇣$P9K_IP_RX_RATE }${P9K_IP_TX_RATE:+⇡$P9K_IP_TX_RATE }$P9K_IP_IP' + # Show information for the first network interface whose name matches this regular expression. + # Run `ifconfig` or `ip -4 a show` to see the names of all network interfaces. + typeset -g POWERLEVEL9K_IP_INTERFACE='[ew].*' + # Custom icon. + # typeset -g POWERLEVEL9K_IP_VISUAL_IDENTIFIER_EXPANSION='⭐' + + #########################[ proxy: system-wide http/https/ftp proxy ]########################## + # Proxy color. + typeset -g POWERLEVEL9K_PROXY_FOREGROUND=4 + typeset -g POWERLEVEL9K_PROXY_BACKGROUND=0 + # Custom icon. + # typeset -g POWERLEVEL9K_PROXY_VISUAL_IDENTIFIER_EXPANSION='⭐' + + ################################[ battery: internal battery ]################################# + # Show battery in red when it's below this level and not connected to power supply. + typeset -g POWERLEVEL9K_BATTERY_LOW_THRESHOLD=20 + typeset -g POWERLEVEL9K_BATTERY_LOW_FOREGROUND=1 + # Show battery in green when it's charging or fully charged. + typeset -g POWERLEVEL9K_BATTERY_{CHARGING,CHARGED}_FOREGROUND=2 + # Show battery in yellow when it's discharging. + typeset -g POWERLEVEL9K_BATTERY_DISCONNECTED_FOREGROUND=3 + # Battery pictograms going from low to high level of charge. + typeset -g POWERLEVEL9K_BATTERY_STAGES='\UF008E\UF007A\UF007B\UF007C\UF007D\UF007E\UF007F\UF0080\UF0081\UF0082\UF0079' + # Don't show the remaining time to charge/discharge. + typeset -g POWERLEVEL9K_BATTERY_VERBOSE=false + typeset -g POWERLEVEL9K_BATTERY_BACKGROUND=0 + + #####################################[ wifi: wifi speed ]##################################### + # WiFi color. + typeset -g POWERLEVEL9K_WIFI_FOREGROUND=0 + typeset -g POWERLEVEL9K_WIFI_BACKGROUND=4 + # Custom icon. + # typeset -g POWERLEVEL9K_WIFI_VISUAL_IDENTIFIER_EXPANSION='⭐' + + # Use different colors and icons depending on signal strength ($P9K_WIFI_BARS). + # + # # Wifi colors and icons for different signal strength levels (low to high). + # typeset -g my_wifi_fg=(0 0 0 0 0) # <-- change these values + # typeset -g my_wifi_icon=('WiFi' 'WiFi' 'WiFi' 'WiFi' 'WiFi') # <-- change these values + # + # typeset -g POWERLEVEL9K_WIFI_CONTENT_EXPANSION='%F{${my_wifi_fg[P9K_WIFI_BARS+1]}}$P9K_WIFI_LAST_TX_RATE Mbps' + # typeset -g POWERLEVEL9K_WIFI_VISUAL_IDENTIFIER_EXPANSION='%F{${my_wifi_fg[P9K_WIFI_BARS+1]}}${my_wifi_icon[P9K_WIFI_BARS+1]}' + # + # The following parameters are accessible within the expansions: + # + # Parameter | Meaning + # ----------------------+--------------- + # P9K_WIFI_SSID | service set identifier, a.k.a. network name + # P9K_WIFI_LINK_AUTH | authentication protocol such as "wpa2-psk" or "none"; empty if unknown + # P9K_WIFI_LAST_TX_RATE | wireless transmit rate in megabits per second + # P9K_WIFI_RSSI | signal strength in dBm, from -120 to 0 + # P9K_WIFI_NOISE | noise in dBm, from -120 to 0 + # P9K_WIFI_BARS | signal strength in bars, from 0 to 4 (derived from P9K_WIFI_RSSI and P9K_WIFI_NOISE) + + ####################################[ time: current time ]#################################### + # Current time color. + typeset -g POWERLEVEL9K_TIME_FOREGROUND=0 + typeset -g POWERLEVEL9K_TIME_BACKGROUND=7 + # Format for the current time: 09:51:02. See `man 3 strftime`. + typeset -g POWERLEVEL9K_TIME_FORMAT='%D{%H:%M:%S}' + # If set to true, time will update when you hit enter. This way prompts for the past + # commands will contain the start times of their commands as opposed to the default + # behavior where they contain the end times of their preceding commands. + typeset -g POWERLEVEL9K_TIME_UPDATE_ON_COMMAND=false + # Custom icon. + # typeset -g POWERLEVEL9K_TIME_VISUAL_IDENTIFIER_EXPANSION='⭐' + # Custom prefix. + typeset -g POWERLEVEL9K_TIME_PREFIX='at ' + + # Example of a user-defined prompt segment. Function prompt_example will be called on every + # prompt if `example` prompt segment is added to POWERLEVEL9K_LEFT_PROMPT_ELEMENTS or + # POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS. It displays an icon and yellow text on red background + # greeting the user. + # + # Type `p10k help segment` for documentation and a more sophisticated example. + function prompt_example() { + p10k segment -b 1 -f 3 -i '⭐' -t 'hello, %n' + } + + # User-defined prompt segments may optionally provide an instant_prompt_* function. Its job + # is to generate the prompt segment for display in instant prompt. See + # https://github.com/romkatv/powerlevel10k/blob/master/README.md#instant-prompt. + # + # Powerlevel10k will call instant_prompt_* at the same time as the regular prompt_* function + # and will record all `p10k segment` calls it makes. When displaying instant prompt, Powerlevel10k + # will replay these calls without actually calling instant_prompt_*. It is imperative that + # instant_prompt_* always makes the same `p10k segment` calls regardless of environment. If this + # rule is not observed, the content of instant prompt will be incorrect. + # + # Usually, you should either not define instant_prompt_* or simply call prompt_* from it. If + # instant_prompt_* is not defined for a segment, the segment won't be shown in instant prompt. + function instant_prompt_example() { + # Since prompt_example always makes the same `p10k segment` calls, we can call it from + # instant_prompt_example. This will give us the same `example` prompt segment in the instant + # and regular prompts. + prompt_example + } + + # User-defined prompt segments can be customized the same way as built-in segments. + typeset -g POWERLEVEL9K_EXAMPLE_FOREGROUND=3 + typeset -g POWERLEVEL9K_EXAMPLE_BACKGROUND=1 + # typeset -g POWERLEVEL9K_EXAMPLE_VISUAL_IDENTIFIER_EXPANSION='⭐' + + # Transient prompt works similarly to the builtin transient_rprompt option. It trims down prompt + # when accepting a command line. Supported values: + # + # - off: Don't change prompt when accepting a command line. + # - always: Trim down prompt when accepting a command line. + # - same-dir: Trim down prompt when accepting a command line unless this is the first command + # typed after changing current working directory. + typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=always + + # Instant prompt mode. + # + # - off: Disable instant prompt. Choose this if you've tried instant prompt and found + # it incompatible with your zsh configuration files. + # - quiet: Enable instant prompt and don't print warnings when detecting console output + # during zsh initialization. Choose this if you've read and understood + # https://github.com/romkatv/powerlevel10k/blob/master/README.md#instant-prompt. + # - verbose: Enable instant prompt and print a warning when detecting console output during + # zsh initialization. Choose this if you've never tried instant prompt, haven't + # seen the warning, or if you are unsure what this all means. + typeset -g POWERLEVEL9K_INSTANT_PROMPT=verbose + + # Hot reload allows you to change POWERLEVEL9K options after Powerlevel10k has been initialized. + # For example, you can type POWERLEVEL9K_BACKGROUND=red and see your prompt turn red. Hot reload + # can slow down prompt by 1-2 milliseconds, so it's better to keep it turned off unless you + # really need it. + typeset -g POWERLEVEL9K_DISABLE_HOT_RELOAD=true + + # If p10k is already loaded, reload configuration. + # This works even with POWERLEVEL9K_DISABLE_HOT_RELOAD=true. + (( ! $+functions[p10k] )) || p10k reload +} + +# Tell `p10k configure` which file it should overwrite. +typeset -g POWERLEVEL9K_CONFIG_FILE=${${(%):-%x}:a} + +(( ${#p10k_config_opts} )) && setopt ${p10k_config_opts[@]} +'builtin' 'unset' 'p10k_config_opts' diff --git a/modules/zsh/default.nix b/modules/zsh/default.nix new file mode 100644 index 0000000..265648d --- /dev/null +++ b/modules/zsh/default.nix @@ -0,0 +1,74 @@ +{ pkgs, lib, config, ... }: + +with lib; +let cfg = config.modules.zsh; + +in { + options.modules.zsh = { enable = mkEnableOption "zsh"; }; + config = mkIf cfg.enable { + home.packages = with pkgs; [ + zsh + fzf + ]; + + programs.zsh = { + enable = true; + + dotDir = ".config/zsh"; + + enableCompletion = true; + enableAutosuggestions = true; + syntaxHighlighting.enable = true; + + initExtra = '' + bindkey "^[[1;3C" forward-word # Key Alt + Right + bindkey "^[[1;3D" backward-word # Key Alt + Left + ''; + + shellAliases = { + cat = "bat"; + vi = "nvim"; + vim = "nvim"; + ls = "eza --icons"; + tree = "eza --tree --icons"; + kali = "distrobox enter --root kali-rolling"; + kali-create = "distrobox create --root kalilinux/kali-rolling"; + arch = "distrobox enter --root archlinux"; + arch-create = "distrobox create --root archlinux"; + }; + + plugins = with pkgs; [ + { + name = "powerlevel10k"; + src = "${zsh-powerlevel10k}/share/zsh-powerlevel10k"; + file = "powerlevel10k.zsh-theme"; + } + { + name = "powerlevel10k-config"; + src = ./.; + file = ".p10k.zsh"; + } + { + name = "fzf-zsh"; + src = "${fzf-zsh}/share/zsh/plugins/fzf-zsh"; + file = "fzf-zsh.plugin.zsh"; + } + { + name = "sudo-zsh"; + src = ./.; + file = "sudo.plugin.zsh"; + } + { + name = "zsh-nix-shell"; + file = "nix-shell.plugin.zsh"; + src = pkgs.fetchFromGitHub { + owner = "chisui"; + repo = "zsh-nix-shell"; + rev = "v0.8.0"; + sha256 = "1lzrn0n4fxfcgg65v0qhnj7wnybybqzs4adz7xsrkgmcsr0ii8b7"; + }; + } + ]; + }; + }; +} diff --git a/modules/zsh/sudo.plugin.zsh b/modules/zsh/sudo.plugin.zsh new file mode 100644 index 0000000..66b253f --- /dev/null +++ b/modules/zsh/sudo.plugin.zsh @@ -0,0 +1,108 @@ +# ------------------------------------------------------------------------------ +# Description +# ----------- +# +# sudo or sudo -e (replacement for sudoedit) will be inserted before the command +# +# ------------------------------------------------------------------------------ +# Authors +# ------- +# +# * Dongweiming +# * Subhaditya Nath +# * Marc Cornellà +# * Carlo Sala +# +# ------------------------------------------------------------------------------ + +__sudo-replace-buffer() { + local old=$1 new=$2 space=${2:+ } + + # if the cursor is positioned in the $old part of the text, make + # the substitution and leave the cursor after the $new text + if [[ $CURSOR -le ${#old} ]]; then + BUFFER="${new}${space}${BUFFER#$old }" + CURSOR=${#new} + # otherwise just replace $old with $new in the text before the cursor + else + LBUFFER="${new}${space}${LBUFFER#$old }" + fi +} + +sudo-command-line() { + # If line is empty, get the last run command from history + [[ -z $BUFFER ]] && LBUFFER="$(fc -ln -1)" + + # Save beginning space + local WHITESPACE="" + if [[ ${LBUFFER:0:1} = " " ]]; then + WHITESPACE=" " + LBUFFER="${LBUFFER:1}" + fi + + { + # If $SUDO_EDITOR or $VISUAL are defined, then use that as $EDITOR + # Else use the default $EDITOR + local EDITOR=${SUDO_EDITOR:-${VISUAL:-$EDITOR}} + + # If $EDITOR is not set, just toggle the sudo prefix on and off + if [[ -z "$EDITOR" ]]; then + case "$BUFFER" in + sudo\ -e\ *) __sudo-replace-buffer "sudo -e" "" ;; + sudo\ *) __sudo-replace-buffer "sudo" "" ;; + *) LBUFFER="sudo $LBUFFER" ;; + esac + return + fi + + # Check if the typed command is really an alias to $EDITOR + + # Get the first part of the typed command + local cmd="${${(Az)BUFFER}[1]}" + # Get the first part of the alias of the same name as $cmd, or $cmd if no alias matches + local realcmd="${${(Az)aliases[$cmd]}[1]:-$cmd}" + # Get the first part of the $EDITOR command ($EDITOR may have arguments after it) + local editorcmd="${${(Az)EDITOR}[1]}" + + # Note: ${var:c} makes a $PATH search and expands $var to the full path + # The if condition is met when: + # - $realcmd is '$EDITOR' + # - $realcmd is "cmd" and $EDITOR is "cmd" + # - $realcmd is "cmd" and $EDITOR is "cmd --with --arguments" + # - $realcmd is "/path/to/cmd" and $EDITOR is "cmd" + # - $realcmd is "/path/to/cmd" and $EDITOR is "/path/to/cmd" + # or + # - $realcmd is "cmd" and $EDITOR is "cmd" + # - $realcmd is "cmd" and $EDITOR is "/path/to/cmd" + # or + # - $realcmd is "cmd" and $EDITOR is /alternative/path/to/cmd that appears in $PATH + if [[ "$realcmd" = (\$EDITOR|$editorcmd|${editorcmd:c}) \ + || "${realcmd:c}" = ($editorcmd|${editorcmd:c}) ]] \ + || builtin which -a "$realcmd" | command grep -Fx -q "$editorcmd"; then + __sudo-replace-buffer "$cmd" "sudo -e" + return + fi + + # Check for editor commands in the typed command and replace accordingly + case "$BUFFER" in + $editorcmd\ *) __sudo-replace-buffer "$editorcmd" "sudo -e" ;; + \$EDITOR\ *) __sudo-replace-buffer '$EDITOR' "sudo -e" ;; + sudo\ -e\ *) __sudo-replace-buffer "sudo -e" "$EDITOR" ;; + sudo\ *) __sudo-replace-buffer "sudo" "" ;; + *) LBUFFER="sudo $LBUFFER" ;; + esac + } always { + # Preserve beginning space + LBUFFER="${WHITESPACE}${LBUFFER}" + + # Redisplay edit buffer (compatibility with zsh-syntax-highlighting) + zle && zle redisplay # only run redisplay if zle is enabled + } +} + +zle -N sudo-command-line + +# Defined shortcut keys: [Esc] [Esc] +bindkey -M emacs '\e\e' sudo-command-line +bindkey -M vicmd '\e\e' sudo-command-line +bindkey -M viins '\e\e' sudo-command-line diff --git a/pics/PwNixOS-Wallpaper.png b/pics/PwNixOS-Wallpaper.png new file mode 100644 index 0000000..9cf57e3 Binary files /dev/null and b/pics/PwNixOS-Wallpaper.png differ diff --git a/pics/PwNixOS.png b/pics/PwNixOS.png new file mode 100644 index 0000000..23468f7 Binary files /dev/null and b/pics/PwNixOS.png differ diff --git a/pics/readme/floating.png b/pics/readme/floating.png new file mode 100644 index 0000000..5f0231b Binary files /dev/null and b/pics/readme/floating.png differ diff --git a/pics/readme/terminal.png b/pics/readme/terminal.png new file mode 100644 index 0000000..ec7b347 Binary files /dev/null and b/pics/readme/terminal.png differ diff --git a/pics/readme/vim_and_gtk.png b/pics/readme/vim_and_gtk.png new file mode 100644 index 0000000..0974284 Binary files /dev/null and b/pics/readme/vim_and_gtk.png differ diff --git a/pics/wallpaper.png b/pics/wallpaper.png new file mode 100644 index 0000000..3e252b8 Binary files /dev/null and b/pics/wallpaper.png differ diff --git a/systems/yoga/configuration.nix b/systems/yoga/configuration.nix deleted file mode 100644 index 5e81462..0000000 --- a/systems/yoga/configuration.nix +++ /dev/null @@ -1,269 +0,0 @@ -{ config, pkgs, lib, ... }: -##### Variable definitions ##### -let - - burekVariable = "burek"; - -in { - - imports = [ ./hardware-configuration.nix ]; - - ##### Environment Variables ##### - environment = { - variables = { - # PROXY SETTINGS - # http_proxy = "http://proxy.site"; - # https_proxy = "https://proxy.site"; - EXTRA_LDFLAGS = "-L/lib -L${pkgs.linuxPackages.nvidia_x11}/lib"; - CUDA_PATH = "${pkgs.cudatoolkit}"; - QT_STYLE_OVERRIDE = "kvantum"; - QT_QPA_PLATFORMTHEME = "qt5ct"; - EXTRA_CCFLAGS = "-I/usr/include"; - }; - - sessionVariables = { - LD_LIBRARY_PATH = with pkgs; - "${stdenv.cc.cc.lib.outPath}/lib:${linuxPackages.nvidia_x11}/lib:${stdenv.cc.cc.lib}/lib:${pkgs.zlib}/lib:${pkgs.libGL}/lib:${pkgs.libGLU}/lib:${pkgs.glibc}/lib:${pkgs.glib.out}/lib"; - }; - - }; - - home-manager = { - users = { spagnologasper = ../../home.nix; }; - useGlobalPkgs = true; - }; - - ##### General system settings ##### - time.timeZone = "Europe/Ljubljana"; - i18n.defaultLocale = "en_US.UTF-8"; - system.stateVersion = "23.11"; - system.autoUpgrade.enable = false; - system.autoUpgrade.allowReboot = false; - nixpkgs.config.allowUnfree = true; - - ##### Hardware and bootloader configurations ##### - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; - boot.kernelModules = [ "kvm-intel" "wireguard" ]; - boot.blacklistedKernelModules = [ "nouveau" ]; - boot.extraModulePackages = [ pkgs.linuxPackages.nvidia_x11 ]; - - ### CUDA ### - nixpkgs.config.cudaSupport = true; - services.xserver.videoDrivers = [ "amdgpu" "nvidia" ]; - virtualisation.docker.enableNvidia = true; # Enable GPU support in container - - hardware.nvidia = { - - # Modesetting is required. - modesetting.enable = true; - - # Nvidia power management. Experimental, and can cause sleep/suspend to fail. - powerManagement.enable = false; - # Fine-grained power management. Turns off GPU when not in use. - # Experimental and only works on modern Nvidia GPUs (Turing or newer). - powerManagement.finegrained = false; - - # Use the NVidia open source kernel module (not to be confused with the - # independent third-party "nouveau" open source driver). - # Support is limited to the Turing and later architectures. Full list of - # supported GPUs is at: - # https://github.com/NVIDIA/open-gpu-kernel-modules#compatible-gpus - # Only available from driver 515.43.04+ - # Do not disable this unless your GPU is unsupported or if you have a good reason to. - open = true; - - # Enable the Nvidia settings menu, - # accessible via `nvidia-settings`. - nvidiaSettings = true; - - # Optionally, you may need to select the appropriate driver version for your specific GPU. - package = config.boot.kernelPackages.nvidiaPackages.stable; - }; - - # Bluetooth - hardware.bluetooth.enable = true; - - hardware.opengl = { - enable = true; - driSupport = true; - driSupport32Bit = true; - extraPackages = with pkgs; [ libGLU libGL ]; - }; - - # Enable UDisks2 service for automounting - services.udisks2.enable = true; - - ### KVM ### - services.qemuGuest.enable = true; - virtualisation.docker.enable = true; - - virtualisation.libvirtd = { - qemu = { - ovmf.enable = true; - runAsRoot = true; - }; - enable = true; - onBoot = "ignore"; - onShutdown = "shutdown"; - }; - - ##### Networking settings ##### - networking.hostName = "nixos"; - networking.networkmanager.enable = true; - - networking.extraHosts = ""; - - ##### Services #### - services.pipewire = { - enable = true; - alsa.enable = true; - alsa.support32Bit = true; - pulse.enable = true; - }; - - services.xserver = { enable = true; }; - - xdg.portal = { - enable = true; - wlr.enable = true; - # gtk portal needed to make gtk apps happy - extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; - config.common.default = "*"; - }; - - services.dbus.enable = true; - services.printing.enable = true; - - # start polkit on login - systemd = { - user.services.polkit-gnome-authentication-agent-1 = { - description = "polkit-gnome-authentication-agent-1"; - wantedBy = [ "graphical-session.target" ]; - wants = [ "graphical-session.target" ]; - after = [ "graphical-session.target" ]; - serviceConfig = { - Type = "simple"; - ExecStart = - "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"; - Restart = "on-failure"; - RestartSec = 1; - TimeoutStopSec = 10; - }; - }; - }; - security.polkit.enable = true; - sound.enable = true; - hardware.pulseaudio.enable = false; - security.rtkit.enable = true; - - ##### System packages ##### - environment.systemPackages = with pkgs; [ - linuxPackages.nvidia_x11 - cudatoolkit - alacritty - wayland - xdg-utils - glib - vim - tmux - docker-compose - virt-manager - libguestfs - libvirt - coreutils - binutils - pciutils - dmidecode - autoconf - gcc - gnumake - llvm - libclang - clang - cmake - libtool - libvterm - ncurses5 - stdenv.cc - wget - curl - curl.dev - git-lfs - man - mkpasswd - unzip - direnv - lshw - zsh - oh-my-zsh - fzf - fd - python3 - ruby - rbenv - go - jdk - pulumi - bluez - git - wireguard-tools - polkit_gnome - openvpn - zlib - glib - glibc - file - ffmpeg - wirelesstools - udisks2 - ]; - - nixpkgs.config.permittedInsecurePackages = - [ "electron-12.2.3" "electron-19.1.9" ]; - - ##### Extra ##### - programs.zsh.enable = true; - qt.platformTheme = "qt5ct"; - - programs.mtr.enable = true; - programs.gnupg.agent = { - enable = true; - enableSSHSupport = true; - }; - - # Steam cannot be installed using home-manager, so let it be global for now - programs.steam = { - enable = true; - remotePlay.openFirewall = - true; # Open ports in the firewall for Steam Remote Play - dedicatedServer.openFirewall = - true; # Open ports in the firewall for Source Dedicated Server - }; - - nix = { - package = pkgs.nixFlakes; - extraOptions = '' - experimental-features = nix-command flakes - ''; - }; - - ##### User configurations ###### - users.users.spagnologasper = { - shell = pkgs.zsh; - isNormalUser = true; - description = "spagnologasper"; - extraGroups = [ - "wheel" - "disk" - "libvirtd" - "docker" - "audio" - "video" - "input" - "systemd-journal" - "networkmanager" - "network" - ]; - }; -}