Compare commits

...

4 Commits

5 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1,12 @@
# current machine's name, optional; it can be used to filter settings or in the commit message
hostname: ""
# more details at https://github.com/zokugun/vscode-sync-settings/blob/master/docs/hostname.md
# selected profile, required
profile: main
# repository to sync the settings with, required
repository:
# repository's type, required (dummy: no sync)
type: git
path: ~/.config/codium-settings
branch: main

View File

@ -1,4 +1,4 @@
enable-ssh-support enable-ssh-support
default-cache-ttl 3600 default-cache-ttl 3600
max-cache-ttl 7200 max-cache-ttl 7200
pinentry-program /usr/bin/pinentry-gtk-2 pinentry-program /usr/bin/pinentry-gnome3

4
.vimrc 100644
View File

@ -0,0 +1,4 @@
vmap <C-c> :<Esc>`>a<CR><Esc>mx`<i<CR><Esc>my'xk$v'y!xclip -selection c<CR>u
map <Insert> :set paste<CR>i<CR><CR><Esc>k:.!xclip -o<CR>JxkJx:set nopaste<CR>
" Reopen the last edited position in files
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif

View File

@ -1,5 +1,9 @@
xrandr --output DVI-I-1 --auto --output HDMI-1 --auto --scale 1x1 --right-of DVI-I-1 xrandr --output DVI-I-1 --auto --output HDMI-1 --auto --scale 1x1 --right-of DVI-I-1
xrdb -merge /home/.Xresources xrdb -merge /home/.Xresources
# Propagate environment variables to dbus-daemon, necessary for
# pinentry-gnome3 to properly display without falling
# back to ncurses.
dbus-update-activation-environment DISPLAY XAUTHORITY
WALLPAPER_PATH="/home/.local/share/backgrounds/wallpaper.jpg" WALLPAPER_PATH="/home/.local/share/backgrounds/wallpaper.jpg"
if [ -f ${WALLPAPER_PATH} ]; then if [ -f ${WALLPAPER_PATH} ]; then
feh --bg-scale ${WALLPAPER_PATH} feh --bg-scale ${WALLPAPER_PATH}

View File

@ -45,6 +45,7 @@ In brief this is the classic Arch/i3 combo with :
* [yay](https://github.com/Jguer/yay) AUR wrapper (better check your [mirrors](https://wiki.archlinux.org/title/Mirrors) too) * [yay](https://github.com/Jguer/yay) AUR wrapper (better check your [mirrors](https://wiki.archlinux.org/title/Mirrors) too)
* Python 3 and Pip * Python 3 and Pip
* Git * Git
* SSH keys to pull and push from Git repositories
## Installation ## Installation