This commit is contained in:
Antoine Phan
2024-08-05 09:38:10 +07:00
parent 2d7fb743a9
commit c1bc131346
7 changed files with 111 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
import = [ import = [
"~/.config/alacritty/themes/themes/catppuccin_mocha.toml" "~/.config/alacritty/themes/themes/deep_space.toml"
] ]
[colors.cursor] [colors.cursor]

View File

@@ -148,3 +148,7 @@ alias arcli="arduino-cli"
alias mcgillvpn='/opt/cisco/anyconnect/bin/vpnui &' alias mcgillvpn='/opt/cisco/anyconnect/bin/vpnui &'
alias mcgillvpn='/opt/cisco/anyconnect/bin/vpnui &' alias mcgillvpn='/opt/cisco/anyconnect/bin/vpnui &'
alias mcgillvpn='/opt/cisco/anyconnect/bin/vpnui &' alias mcgillvpn='/opt/cisco/anyconnect/bin/vpnui &'
export GTK_IM_MODULE=ibus
export QT_IM_MODULE=ibus
export XMODIFIERS=@im=ibus

View File

@@ -192,7 +192,7 @@ bind = $mainMod SHIFT, 9, movetoworkspace, 9
bind = $mainMod SHIFT, 0, movetoworkspace, 10 bind = $mainMod SHIFT, 0, movetoworkspace, 10
# Some workspace customization # Some workspace customization
workspace = 1, monitor:HDMI-A-1, default:true # workspace = 1, monitor:HDMI-A-1, default:true
# Move active window to position # Move active window to position
bind = $mainMod SHIFT, left, movewindow, l bind = $mainMod SHIFT, left, movewindow, l

View File

@@ -31,10 +31,10 @@ Plug 'nvim-lualine/lualine.nvim'
Plug 'nvim-tree/nvim-web-devicons' Plug 'nvim-tree/nvim-web-devicons'
Plug 'preservim/tagbar' Plug 'preservim/tagbar'
Plug 'preservim/nerdtree' Plug 'preservim/nerdtree'
Plug 'tpope/vim-surround' " Plug 'tpope/vim-surround'
Plug 'airblade/vim-gitgutter' " Plug 'airblade/vim-gitgutter'
Plug 'preservim/nerdtree' Plug 'preservim/nerdtree'
Plug 'ryanoasis/vim-devicons' " Plug 'ryanoasis/vim-devicons'
call plug#end() call plug#end()

97
pacman/etc/pacman.conf Normal file
View File

@@ -0,0 +1,97 @@
#
# /etc/pacman.conf
#
# See the pacman.conf(5) manpage for option and repository directives
#
# GENERAL OPTIONS
#
[options]
# The following paths are commented out with their default values listed.
# If you wish to use different paths, uncomment and update the paths.
#RootDir = /
#DBPath = /var/lib/pacman/
#CacheDir = /var/cache/pacman/pkg/
#LogFile = /var/log/pacman.log
#GPGDir = /etc/pacman.d/gnupg/
#HookDir = /etc/pacman.d/hooks/
HoldPkg = pacman glibc
#XferCommand = /usr/bin/curl -L -C - -f -o %o %u
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
#CleanMethod = KeepInstalled
Architecture = auto
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
#IgnorePkg =
#IgnoreGroup =
#NoUpgrade =
#NoExtract =
# Misc options
#UseSyslog
Color
#NoProgressBar
CheckSpace
#VerbosePkgLists
ParallelDownloads = 30
# By default, pacman accepts packages signed by keys that its local keyring
# trusts (see pacman-key and its man page), as well as unsigned packages.
SigLevel = Required DatabaseOptional
LocalFileSigLevel = Optional
#RemoteFileSigLevel = Required
# NOTE: You must run `pacman-key --init` before first using pacman; the local
# keyring can then be populated with the keys of all official Arch Linux
# packagers with `pacman-key --populate archlinux`.
#
# REPOSITORIES
# - can be defined here or included from another file
# - pacman will search repositories in the order defined here
# - local/custom mirrors can be added here or in separate files
# - repositories listed first will take precedence when packages
# have identical names, regardless of version number
# - URLs will have $repo replaced by the name of the current repo
# - URLs will have $arch replaced by the name of the architecture
#
# Repository entries are of the format:
# [repo-name]
# Server = ServerName
# Include = IncludePath
#
# The header [repo-name] is crucial - it must be present and
# uncommented to enable the repo.
#
# The testing repositories are disabled by default. To enable, uncomment the
# repo name header and Include lines. You can add preferred servers immediately
# after the header, and they will be used before the default mirrors.
#[core-testing]
#Include = /etc/pacman.d/mirrorlist
[core]
Include = /etc/pacman.d/mirrorlist
#[extra-testing]
#Include = /etc/pacman.d/mirrorlist
[extra]
Include = /etc/pacman.d/mirrorlist
# If you want to run 32 bit applications on your x86_64 system,
# enable the multilib repositories as required here.
#[multilib-testing]
#Include = /etc/pacman.d/mirrorlist
[multilib]
Include = /etc/pacman.d/mirrorlist
# An example of a custom package repository. See the pacman manpage for
# tips on creating your own repositories.
#[custom]
#SigLevel = Optional TrustAll
#Server = file:///home/custompkgs

View File

@@ -1,2 +0,0 @@
random stuff again and again adn again
Once more

View File

@@ -4,7 +4,7 @@ export ZSH="$HOME/.oh-my-zsh"
# load a random theme each time oh-my-zsh is loaded, in which case, # load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME # to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
ZSH_THEME="jovial" ZSH_THEME="theunraveler"
# Set list of themes to pick from when loading at random # Set list of themes to pick from when loading at random
# Setting this variable when ZSH_THEME=random will cause zsh to load # Setting this variable when ZSH_THEME=random will cause zsh to load
@@ -66,12 +66,11 @@ COMPLETION_WAITING_DOTS="true"
plugins=( plugins=(
git git
autojump autojump
urltools
bgnotify
zsh-autosuggestions zsh-autosuggestions
zsh-syntax-highlighting zsh-syntax-highlighting
jovial
archlinux archlinux
sudo
tmux
) )
source $ZSH/oh-my-zsh.sh source $ZSH/oh-my-zsh.sh
@@ -129,7 +128,7 @@ alias connectWifi='sudo wpa_supplicant -B -i wlo1 -c /etc/wpa_supplicant/wpa_sup
alias project='cd ~/Partage/Projects/' alias project='cd ~/Partage/Projects/'
alias coding='cd $HOME/Partage/Coding' alias coding='cd $HOME/Partage/Coding'
alias gotop="gotop -l kitchensink -c monokai --nvidia" alias gotop="gotop -l kitchensink --nvidia"
alias setbackground="feh --bg-fill --randomize $HOME/.wallpaper/" alias setbackground="feh --bg-fill --randomize $HOME/.wallpaper/"
alias fallinlight="feh --bg-fill --randomize /home/antoine/Pictures/Fallin\'\ Light" alias fallinlight="feh --bg-fill --randomize /home/antoine/Pictures/Fallin\'\ Light"
@@ -143,6 +142,7 @@ alias please='sudo'
alias ibus-en='ibus engine xkb:us:intl:eng' alias ibus-en='ibus engine xkb:us:intl:eng'
alias ibus-vn='ibus engine Bamboo' alias ibus-vn='ibus engine Bamboo'
export GTK_IM_MODULE=ibus export GTK_IM_MODULE=ibus
export QT_IM_MODULE=ibus export QT_IM_MODULE=ibus
export XMODIFIERS=@im=ibus export XMODIFIERS=@im=ibus
@@ -159,7 +159,6 @@ export PATH="$BUN_INSTALL/bin:$PATH"
eval "$(zoxide init --cmd cd zsh)" eval "$(zoxide init --cmd cd zsh)"
if [ -e /home/antoine/.nix-profile/etc/profile.d/nix.sh ]; then . /home/antoine/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer if [ -e /home/antoine/.nix-profile/etc/profile.d/nix.sh ]; then . /home/antoine/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
export NVM_DIR="$HOME/.nvm" export NVM_DIR="$HOME/.nvm"