mirror of https://github.com/mitchell/dotfiles.git
Add FZF and ALE keymappings to vimrc; change yabai window_topmost to on;
add rbenv ruby 2.7.0 bin to PATH
This commit is contained in:
parent
005b211464
commit
4e7972ced1
|
@ -6,7 +6,8 @@ set -gx PATH $PATH $GOBIN \
|
|||
$HOME/.pub-cache/bin \
|
||||
$HOME/Documents/scripts \
|
||||
$HOME/Documents/flutter/bin \
|
||||
$HOME/.cargo/bin
|
||||
$HOME/.cargo/bin \
|
||||
$HOME/.rbenv/versions/2.7.0/bin
|
||||
|
||||
set -g fish_escape_delay_ms 10
|
||||
|
||||
|
|
8
.vimrc
8
.vimrc
|
@ -35,13 +35,19 @@ else
|
|||
let &t_EI = "\<Esc>]50;CursorShape=0\x7"
|
||||
endif
|
||||
|
||||
nnoremap <C-p> :FZF<cr>
|
||||
|
||||
let mapleader = 'j'
|
||||
inoremap <leader>j <Esc>
|
||||
|
||||
let mapleader = ','
|
||||
nnoremap <leader>n :NERDTree<cr>
|
||||
nnoremap <leader>w <C-w>
|
||||
nnoremap <C-p> :FZF<cr>
|
||||
nnoremap <leader>p :FZF<cr>
|
||||
nnoremap <leader>g :ALEGoToDefinition<cr>
|
||||
nnoremap <leader>r :ALEFindReferences<cr>
|
||||
nnoremap <leader>d :ALEDetail<cr>
|
||||
nnoremap <leader>h :ALEHover<cr>
|
||||
|
||||
" next line is necessary to prevent background rendering bug with kitty term
|
||||
let &t_ut=''
|
||||
|
|
2
.yabairc
2
.yabairc
|
@ -15,7 +15,7 @@ yabai -m config status_bar_clock_icon
|
|||
yabai -m config mouse_follows_focus on
|
||||
yabai -m config focus_follows_mouse off
|
||||
yabai -m config window_placement second_child
|
||||
yabai -m config window_topmost off
|
||||
yabai -m config window_topmost on
|
||||
yabai -m config window_opacity off
|
||||
yabai -m config window_opacity_duration 0.0
|
||||
yabai -m config window_shadow on
|
||||
|
|
Loading…
Reference in New Issue