This commit is contained in:
Sergey 2018-09-30 17:32:10 +03:00
parent 5353db3a37
commit 64a675368c
5 changed files with 7 additions and 5 deletions

View File

@ -33,7 +33,7 @@ URxvt*keysym.C-F5: perl:urxvt-colors:
URxvt.keysym.M-Escape: perl:keyboard-select:activate
URxvt.keysym.M-s: perl:keyboard-select:search
URxvt.url-select.launcher: firefox
URxvt.url-select.launcher: browser
URxvt.url-select.underline: true
URxvt.url-select.button: 1
URxvt.keysym.M-u: perl:url-select:select_next

View File

@ -158,7 +158,7 @@ defbindings("WMPlex.toplevel", {
--kpress(META.."T", "mod_query.exec_on_merr(_, XTERM or 'urxvt')"),
bdoc("Run a browser."),
kpress(META.."Shift+B", "mod_query.exec_on_merr(_, BROWSER or 'vimb')"),
kpress(META.."Shift+B", "notioncore.exec_on(_, 'browser')"),
bdoc("Query for command line to execute."),
kpress(META.."F2", "mod_query.query_exec(_)"),

View File

@ -272,8 +272,10 @@ let g:airline#extensions#tabline#enabled = 1 " Enable airline for tab-bar
" let g:airline#extensions#tabline#show_buffers = 0 " Don't display buffers in tab-bar with single tab
" let g:airline#extensions#tabline#fnamemod = ':t' " Display only filename in tab
" Buffer/Tab navigation like Firefox.
" Buffer/Tab navigation
nnoremap <C-b>p :bp<CR>
nnoremap <C-b>h :bp<CR>
nnoremap <C-b>n :bn<CR>
nnoremap <C-b>l :bn<CR>
nnoremap <C-b>d :bd<CR>

View File

@ -1,6 +1,6 @@
---
AllCops:
TargetRubyVersion: 2.4
TargetRubyVersion: 2.5
Include:
- 'vendor/gems/**/*'
Exclude:

View File

@ -1,6 +1,6 @@
#!/bin/sh
export BROWSER=firefox
export BROWSER=browser
export XTERM=urxvt
export LANGUAGE=en_US:en_GB:en
export LC_TIME=ru_RU.UTF-8