Compare commits
4 Commits
2b65e1cf3d
...
1374da92d7
Author | SHA1 | Date |
---|---|---|
Quentin Duchemin | 1374da92d7 | |
Quentin Duchemin | 4427295a1d | |
Quentin Duchemin | 3cfd6b8818 | |
Quentin Duchemin | 7191312010 |
|
@ -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
|
|
@ -1,4 +1,4 @@
|
|||
enable-ssh-support
|
||||
default-cache-ttl 3600
|
||||
max-cache-ttl 7200
|
||||
pinentry-program /usr/bin/pinentry-gtk-2
|
||||
pinentry-program /usr/bin/pinentry-gnome3
|
||||
|
|
|
@ -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
|
|
@ -1,5 +1,9 @@
|
|||
xrandr --output DVI-I-1 --auto --output HDMI-1 --auto --scale 1x1 --right-of DVI-I-1
|
||||
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"
|
||||
if [ -f ${WALLPAPER_PATH} ]; then
|
||||
feh --bg-scale ${WALLPAPER_PATH}
|
||||
|
|
|
@ -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)
|
||||
* Python 3 and Pip
|
||||
* Git
|
||||
* SSH keys to pull and push from Git repositories
|
||||
|
||||
## Installation
|
||||
|
||||
|
|
Loading…
Reference in New Issue