Mercurial > dotfiles
view qutebrowser/config.py @ 495:232351531855
Vim config improvements
- Support for gui vs non gui plugin exclusions rules
- Move HasPlugin to an autoload function that can be used in vimrc-local
- Don't load the local bundle if it doesn't exist
- Handle VS vs UE for building projects
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Fri, 12 Nov 2021 10:51:57 -0800 |
parents | 3b9394a0a58b |
children |
line wrap: on
line source
# Use numbers so I can type link text to filter things down. c.hints.mode = 'number' # Support Ctrl-clicking links when I feel like using the mouse. c.tabs.background = True # Clear last tab when close it. c.tabs.last_close = 'blank' # Use `b` to quickly jumb to a different tab. config.bind('b', 'set-cmd-text -s :buffer') # Correct way to navigate left/right between tabs! config.bind('J', 'tab-prev') config.bind('K', 'tab-next') # Reorder tabs easily. config.bind('<', 'tab-move -') config.bind('>', 'tab-move +')