This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "JetBrains Dark", | |
| "background": "#1e1f22", | |
| "foreground": "#bcbec4", | |
| "cursorColor": "#57aaf7", | |
| "selectionBackground": "#2e436e", | |
| "black": "#2b2d30", | |
| "red": "#cf8e6d", | |
| "green": "#6aab73", | |
| "yellow": "#c29e4a", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.config/hypr/hyprlock.conf | |
| # https://wiki.hypr.land/Hypr-Ecosystem/hyprlock/ | |
| $font = Monospace | |
| general { | |
| hide_cursor = false | |
| } | |
| auth { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Alacritty naysayer theme port from helix | |
| # Save as ~/.config/alacritty/themes/naysayer.toml | |
| [colors.primary] | |
| foreground = "#d1b897" # Text color | |
| background = "#062329" # Dark background | |
| [colors.normal] | |
| black = "#062329" # Background color (text terminal) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Alacritty jetbrains_dark theme port from helix | |
| # Save as ~/.config/alacritty/themes/jetbrains_dark.toml | |
| [colors] | |
| # Normal palette (used for syntax) | |
| [colors.primary] | |
| background = "#1e1f22" # blue34 | |
| foreground = "#bcbec4" # blue196 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| case $- in | |
| *i*) ;; | |
| *) return;; | |
| esac | |
| # `man environ` for a list of other environment variables typically seen on a unix-like system | |
| export EDITOR='hx' | |
| # https://docs.python.org/3/using/cmdline.html#envvar-PYTHONSTARTUP | |
| export PYTHONSTARTUP="$HOME/.startup.py" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.config/nushell/config.nu | |
| # https://www.nushell.sh/book/configuration.html | |
| # `config nu` to open this file with buffer editor | |
| # `env.config | table -e | less -R` to see other config options | |
| $env.config.buffer_editor = "hx" | |
| $env.PROMPT_COMMAND_RIGHT = "" | |
| $env.config.show_banner = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://docs.helix-editor.com/ | |
| theme = "tokyonight" | |
| # theme = "naysayer" | |
| # theme = "jetbrains_dark" | |
| # theme = "github_dark" | |
| # theme = "dark_plus" | |
| [editor] | |
| # This is used to force true color; sometimes it doesn't detect true color support correctly. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://pwmt.org/projects/zathura/documentation/ | |
| set guioptions "" | |
| set selection-clipboard clipboard | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .config/alacritty/alacritty.toml | |
| # https://alacritty.org/config-alacritty.html | |
| [general] | |
| import = [ | |
| # "~/.config/alacritty/themes/jetbrains_dark.toml" | |
| # "~/.config/alacritty/themes/github_dark.toml" | |
| # "~/.config/alacritty/themes/dark_plus.toml" | |
| # "~/.config/alacritty/themes/naysayer.toml" | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Simple neovim config | |
| -- Based on: https://github.com/nvim-lua/kickstart.nvim | |
| vim.g.mapleader = ' ' | |
| vim.g.maplocalleader = ' ' | |
| vim.opt.number = true | |
| vim.opt.mouse = 'a' | |
| vim.schedule(function() | |
| vim.opt.clipboard = 'unnamedplus' |
NewerOlder