mirror of
https://github.com/rywng/dotfiles.git
synced 2024-11-24 11:51:50 +08:00
remove fcitx5 and added nvim bindings
This commit is contained in:
parent
feef127a9a
commit
d59f4cc7b7
@ -1,15 +0,0 @@
|
||||
# Vertical Candidate List
|
||||
Vertical Candidate List=False
|
||||
# Use Per Screen DPI
|
||||
PerScreenDPI=True
|
||||
# Use mouse wheel to go to prev or next page
|
||||
WheelForPaging=True
|
||||
# Font
|
||||
Font="Sans 12"
|
||||
# Menu Font
|
||||
MenuFont="Sans 12"
|
||||
# Use input method langauge to display text
|
||||
UseInputMethodLangaugeToDisplayText=True
|
||||
# Theme
|
||||
Theme=Nord-Dark
|
||||
|
@ -1,3 +0,0 @@
|
||||
# Hidden Notifications
|
||||
HiddenNotifications=
|
||||
|
@ -1,5 +0,0 @@
|
||||
# Show preedit within application
|
||||
PreeditInApplication=True
|
||||
# Commit current text when deactivating
|
||||
Commit when deactivate=True
|
||||
|
@ -1,5 +0,0 @@
|
||||
[ProviderOrder]
|
||||
0=Presage
|
||||
1=Custom
|
||||
2=Enchant
|
||||
|
@ -1,62 +0,0 @@
|
||||
[Hotkey]
|
||||
# Enumerate when press trigger key repeatedly
|
||||
EnumerateWithTriggerKeys=True
|
||||
# Temporally switch between first and current Input Method
|
||||
AltTriggerKeys=
|
||||
# Enumerate Input Method Forward
|
||||
EnumerateForwardKeys=
|
||||
# Enumerate Input Method Backward
|
||||
EnumerateBackwardKeys=
|
||||
# Skip first input method while enumerating
|
||||
EnumerateSkipFirst=False
|
||||
# Enumerate Input Method Group Forward
|
||||
EnumerateGroupForwardKeys=
|
||||
# Enumerate Input Method Group Backward
|
||||
EnumerateGroupBackwardKeys=
|
||||
# Activate Input Method
|
||||
ActivateKeys=
|
||||
# Deactivate Input Method
|
||||
DeactivateKeys=
|
||||
|
||||
[Hotkey/TriggerKeys]
|
||||
#0=Control+space
|
||||
|
||||
[Hotkey/PrevPage]
|
||||
0=Up
|
||||
|
||||
[Hotkey/NextPage]
|
||||
0=Down
|
||||
|
||||
[Hotkey/PrevCandidate]
|
||||
0=Shift+Tab
|
||||
|
||||
[Hotkey/NextCandidate]
|
||||
0=Tab
|
||||
|
||||
[Hotkey/TogglePreedit]
|
||||
0=Control+Alt+P
|
||||
|
||||
[Behavior]
|
||||
# Active By Default
|
||||
ActiveByDefault=False
|
||||
# Share Input State
|
||||
ShareInputState=All
|
||||
# Show preedit in application
|
||||
PreeditEnabledByDefault=True
|
||||
# Show Input Method Information when switch input method
|
||||
ShowInputMethodInformation=True
|
||||
# Show Input Method Information when changing focus
|
||||
showInputMethodInformationWhenFocusIn=True
|
||||
# Show compact input method information
|
||||
CompactInputMethodInformation=True
|
||||
# Show first input method information
|
||||
ShowFirstInputMethodInformation=True
|
||||
# Default page size
|
||||
DefaultPageSize=5
|
||||
# Force Enabled Addons
|
||||
EnabledAddons=
|
||||
# Force Disabled Addons
|
||||
DisabledAddons=
|
||||
# Preload input method to be used by default
|
||||
PreloadInputMethod=True
|
||||
|
@ -109,6 +109,16 @@ nmap <space>b <Plug>(easymotion-B)
|
||||
" fix intending.
|
||||
vmap < <gv
|
||||
vmap > >gv
|
||||
" make Y behave like other Capitalized letters
|
||||
nnoremap Y y$
|
||||
" n/N also centered
|
||||
nnoremap n nzzzv
|
||||
nnoremap N Nzzzv
|
||||
" undo to the last , . or !
|
||||
inoremap , ,<c-g>u
|
||||
inoremap . .<c-g>u
|
||||
inoremap ! !<c-g>u
|
||||
inoremap ? ?<c-g>u
|
||||
" Shortcutting split navigation
|
||||
map <A-h> <C-w>h
|
||||
map <A-j> <C-w>j
|
||||
|
Loading…
Reference in New Issue
Block a user