diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/BetterDiscord/data/stable/settings.json | 4 | ||||
-rw-r--r-- | .config/clangd/config.yaml | 5 | ||||
-rw-r--r-- | .config/coc/extensions/package.json | 2 | ||||
-rw-r--r-- | .config/fcitx5/conf/imselector.conf | 8 | ||||
l---------[-rw-r--r--] | .config/fzmp/conf | 4 | ||||
-rw-r--r-- | .config/mpcplus/fzmp.conf | 3 | ||||
-rw-r--r-- | .config/nvim/init.vim | 14 |
7 files changed, 32 insertions, 8 deletions
diff --git a/.config/BetterDiscord/data/stable/settings.json b/.config/BetterDiscord/data/stable/settings.json index e50172b..eb9ab27 100644 --- a/.config/BetterDiscord/data/stable/settings.json +++ b/.config/BetterDiscord/data/stable/settings.json @@ -8,7 +8,9 @@ }, "addons": { "addonErrors": true, - "editAction": "detached" + "editAction": "detached", + "checkForUpdates": true, + "updateInterval": 4 }, "store": { "bdAddonStore": true, diff --git a/.config/clangd/config.yaml b/.config/clangd/config.yaml new file mode 100644 index 0000000..ef8aca7 --- /dev/null +++ b/.config/clangd/config.yaml @@ -0,0 +1,5 @@ +CompileFlags: + # ignore unknown (gcc) compiler flags + Add: -Wno-unknown-warning-option + Remove: [-m*, -f*] + diff --git a/.config/coc/extensions/package.json b/.config/coc/extensions/package.json index 457c31b..1a8c2f8 100644 --- a/.config/coc/extensions/package.json +++ b/.config/coc/extensions/package.json @@ -17,5 +17,5 @@ }, "disabled": [], "locked": [], - "lastUpdate": 1738787299688 + "lastUpdate": 1738787321876 }
\ No newline at end of file diff --git a/.config/fcitx5/conf/imselector.conf b/.config/fcitx5/conf/imselector.conf index 1f2ef16..de02872 100644 --- a/.config/fcitx5/conf/imselector.conf +++ b/.config/fcitx5/conf/imselector.conf @@ -1,11 +1,13 @@ +# 現在の入力コンテキストのみのトリガーキー TriggerKeyLocal= +# 現在の入力コンテキストのみをN番目の入力メソッドに切り替えるホットキー SwitchKeyLocal= [TriggerKey] 0=Super+Z [SwitchKey] -0=Launch5 # f14 -> us -1=Launch6 # f15 -> us-intl -2=Launch7 # f16 -> ja +0=Launch5 +1=Launch6 +2=Launch7 diff --git a/.config/fzmp/conf b/.config/fzmp/conf index 22439c3..a51f36d 100644..120000 --- a/.config/fzmp/conf +++ b/.config/fzmp/conf @@ -1,3 +1 @@ -default_view songs -full_song_format [[[%artist% - %album% / ][%title%]]|%file%] -fzf_options --ignore-case +../mpcplus/fzmp.conf
\ No newline at end of file diff --git a/.config/mpcplus/fzmp.conf b/.config/mpcplus/fzmp.conf new file mode 100644 index 0000000..22439c3 --- /dev/null +++ b/.config/mpcplus/fzmp.conf @@ -0,0 +1,3 @@ +default_view songs +full_song_format [[[%artist% - %album% / ][%title%]]|%file%] +fzf_options --ignore-case diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index dac1f01..9278804 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -19,6 +19,7 @@ set linebreak " set wrap but don't wrap inside words set viminfo+='1000,n~/.local/nvim/viminfo set guifont=JetBrainsMono\ Nerd\ Font:h9:#e-subpixelantialias:#h-slight set linespace=5 +set tabpagemax=999 let g:sneak#label = 1 let g:which_key_map = {} let g:airline_powerline_fonts = 1 @@ -191,6 +192,13 @@ let g:which_key_map.u = 'toggle undo tree' cnoreabbrev W w cnoreabbrev sudow w !sudo tee % +" emacs bindings in vim command-line +cnoremap <A-b> <S-Left> +cnoremap <A-f> <S-Right> +cnoremap <C-a> <Home> +cnoremap <C-e> <End> +cnoremap <A-backspace> <C-w> + " hexokinase let g:Hexokinase_termDisabled = 1 let g:Hexokinase_optOutPatterns = [ 'colour_names' ] @@ -348,6 +356,12 @@ augroup Binary au BufWritePost *.bin set noeol augroup END +" highlight Zephyr .overlay files as devicetree source (dts) +augroup devicetree_ft + au! + au BufRead,BufNewFile *.overlay set syntax=dts +augroup END + " sneak let g:sneak#use_ic_scs = 0 |