Compare commits

..

2 Commits

Author SHA1 Message Date
Anton Volnuhin
d41c1fde91 ppa instead of nix for some packages 2024-05-17 23:30:52 +03:00
Anton Volnuhin
06a1039a89 default theme for bat 2024-05-17 23:22:43 +03:00
2 changed files with 43 additions and 4 deletions

View File

@ -0,0 +1,33 @@
# This is `bat`s configuration file. Each line either contains a comment or
# a command-line option that you want to pass to `bat` by default. You can
# run `bat --help` to get a list of all possible configuration options.
# Specify desired highlighting theme (e.g. "TwoDark"). Run `bat --list-themes`
# for a list of all available themes
#--theme="TwoDark"
# Enable this to use italic text on the terminal. This is not supported on all
# terminal emulators (like tmux, by default):
#--italic-text=always
# Uncomment the following line to disable automatic paging:
#--paging=never
# Uncomment the following line if you are using less version >= 551 and want to
# enable mouse scrolling support in `bat` when running inside tmux. This might
# disable text selection, unless you press shift.
#--pager="less --RAW-CONTROL-CHARS --quit-if-one-screen --mouse"
# Syntax mappings: map a certain filename pattern to a language.
# Example 1: use the C++ syntax for Arduino .ino files
# Example 2: Use ".gitignore"-style highlighting for ".ignore" files
#--map-syntax "*.ino:C++"
#--map-syntax ".ignore:Git Ignore"
#--theme=gruvbox-dark
#--theme=DarkNeon
#Coldark-Dark
#
--theme=OneHalfDark

View File

@ -84,7 +84,7 @@ echo -e "
$Green################################################################################
## ##
## Subscribe to Fish shell repositories in ubuntu/debian ##
## Subscribe to PPA for fish, lazygit, neovim in ubuntu/debian ##
## ##
################################################################################$NC"
@ -98,7 +98,13 @@ $Green##########################################################################
{{ else -}}
## Setup fish repo in ubuntu
sudo apt-add-repository ppa:fish-shell/release-3 -y
{{ end -}}
## Lazygit ppa
sudo add-apt-repository ppa:lazygit-team/release
## Neovim ppa
sudo add-apt-repository ppa:neovim-ppa/unstable
{{ end -}}
sudo apt-get update
{{ end -}}
@ -127,8 +133,8 @@ sleep 3
nix-env -iA nixpkgs.jump nixpkgs.du-dust
{{ else if eq .chezmoi.osRelease.id "debian" "ubuntu" -}}
sudo apt install fish $ACT_PACKAGES libpam-ssh-agent-auth -y
nix-env -iA nixpkgs.neovim nixpkgs.jump nixpkgs.skim nixpkgs.du-dust nixpkgs.lazygit
sudo apt install fish lazygit neovim $ACT_PACKAGES libpam-ssh-agent-auth -y
nix-env -iA nixpkgs.jump nixpkgs.skim nixpkgs.du-dust
if ! fish -c atuin &>/dev/null
then
bash <(curl https://raw.githubusercontent.com/ellie/atuin/main/install.sh)