Compare commits

...

4 commits

3 changed files with 12 additions and 4 deletions

View file

@ -11,3 +11,5 @@
tool = meld tool = meld
[difftool] [difftool]
prompt = false prompt = false
[core]
autocrlf = input

View file

@ -84,14 +84,17 @@ bindsym $mod+Shift+Print --release exec --no-startup-id i3-scrot -s
bindsym $mod+Ctrl+x --release exec --no-startup-id xkill bindsym $mod+Ctrl+x --release exec --no-startup-id xkill
bindsym $mod+Shift+d mode "$mode_applications" bindsym $mod+Shift+d mode "$mode_applications"
set $mode_applications (D)iscord, (S)ignal, (T)elegram, (N)extcloud, (M)usic, (B)luetooth set $mode_applications (D)iscord, Slac(k), (S)ignal, (T)elegram, (C)inny, (N)extcloud, (M)usic, (B)luetooth, (V)alent
mode "$mode_applications" { mode "$mode_applications" {
bindsym d exec flatpak run com.discordapp.Discord bindsym d exec flatpak run com.discordapp.Discord
bindsym k exec flatpak run com.slack.Slack
bindsym s exec signal-desktop bindsym s exec signal-desktop
bindsym t exec telegram-desktop bindsym t exec telegram-desktop
bindsym c exec cinny
bindsym n exec nextcloud bindsym n exec nextcloud
bindsym m exec flatpak run com.spotify.Client bindsym m exec flatpak run com.spotify.Client
bindsym b exec blueman bindsym b exec blueman
bindsym v exec valent
# exit mode: "Enter" or "Escape" # exit mode: "Enter" or "Escape"
bindsym Return mode "default" bindsym Return mode "default"
@ -220,10 +223,9 @@ for_window [class="Oblogout"] fullscreen enable
for_window [class="Pavucontrol"] floating enable for_window [class="Pavucontrol"] floating enable
for_window [class="qt5ct"] floating enable sticky enable border normal for_window [class="qt5ct"] floating enable sticky enable border normal
for_window [class="Qtconfig-qt4"] floating enable sticky enable border normal for_window [class="Qtconfig-qt4"] floating enable sticky enable border normal
for_window [class="Simple-scan"] floating enable border normal for_window [class="System-config-printer.py"] floating enable border normal
for_window [class="(?i)System-config-printer.py"] floating enable border normal
for_window [class="Timeset-gui"] floating enable border normal for_window [class="Timeset-gui"] floating enable border normal
for_window [class="Gnome-calculator"] floating enable for_window [class="Mate-calc"] floating enable
for_window [class="Blueman-manager"] floating enable for_window [class="Blueman-manager"] floating enable
for_window [class="Nm-connection-editor"] floating enable for_window [class="Nm-connection-editor"] floating enable
for_window [class="zoom"] floating enable for_window [class="zoom"] floating enable

View file

@ -3,6 +3,7 @@ set relativenumber
set termguicolors set termguicolors
set expandtab set expandtab
set shiftwidth=2 set shiftwidth=2
set linebreak
:augroup numbertoggle :augroup numbertoggle
: autocmd! : autocmd!
@ -21,5 +22,8 @@ Plug 'godlygeek/tabular'
Plug 'preservim/vim-markdown' Plug 'preservim/vim-markdown'
Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'lervag/vimtex' Plug 'lervag/vimtex'
Plug 'nvarner/typst-lsp'
Plug 'kaarmu/typst.vim'
let g:vimtex_view_method = 'zathura' let g:vimtex_view_method = 'zathura'
let g:coc_filetype_map = {'tex': 'latex'}
call plug#end() call plug#end()