all repos

dotfiles @ 88cbabb

my dotfiles
3 files changed, 23 insertions(+), 9 deletions(-)
Add fterminal plug in nvim, xkill key in qtile
Author: Smirnov Olexandr ss2316544@gmail.com
Committed at: 2020-12-15 19:06:36 +0200
Parent: e6bd4f6
M bin/kbhl

@@ -1,6 +1,6 @@

#!/bin/sh case "$1" in "on"|"-on"|"--on"|1) xset led on ;; - "off"|"-off"|"--off"|0) xset led off ;; + "of"|"off"|"-off"|"--off"|0) xset led off ;; esac
M config/nvim/init.vim

@@ -6,7 +6,7 @@ Plug 'Smirnov-O/nten16.vim'

Plug 'iamcco/markdown-preview.nvim' Plug 'dhruvasagar/vim-table-mode' Plug 'easymotion/vim-easymotion' - Plug 'vifm/vifm.vim' + Plug 'voldikss/vim-floaterm' " File manger & seacher Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }

@@ -104,7 +104,7 @@ " Easymotion

let g:EasyMotion_do_mapping = 0 let g:EasyMotion_smartcase = 1 nmap f <Plug>(easymotion-s) -map <Leader>w <Plug>(easymotion-bd-w) +nmap <Leader>w <Plug>(easymotion-bd-w) nmap F <Plug>(easymotion-overwin-line) nmap s <Plug>(easymotion-overwin-f2)

@@ -116,15 +116,25 @@

" Indent guides let g:indent_guides_enable_on_vim_startup = 1 +" Floaterm +nmap <A-t> :FloatermNew --name=vimterminal --position=top --autoclose=2<CR> +imap <A-t> :FloatermNew --name=vimterminal --position=top --autoclose=2<CR> + " == Maping "imap fd <Esc> let mapleader="," -" Change window -map <C-j> <C-W>j -map <C-k> <C-W>k -map <C-h> <C-W>h -map <C-l> <C-W>l +" Window +nmap <C-h> :wincmd h<CR> +nmap <C-j> :wincmd j<CR> +nmap <C-k> :wincmd k<CR> +nmap <C-l> :wincmd l<CR> +nmap <A-q> :wincmd q<CR> +nmap <A-c> :wincmd n<CR> +nmap <A-z> :wincmd K<CR> +nmap <A-x> :wincmd L<CR> +nmap <A-h> :wincmd <<CR> +nmap <A-l> :wincmd ><CR> " Tab's noremap <C-Tab> :tabnext<CR>
M config/qtile/config.py

@@ -176,6 +176,10 @@ Key([mod], "r",

lazy.spawncmd(), desc="Spawn a command using a prompt widget" ), + Key([mod, "shift"], "Escape", + lazy.spawn("xkill"), + desc="Xkill" + ) ] # Workspaces name, keys

@@ -299,6 +303,6 @@ {"wname": "branchdialog"},

{"wname": "pinentry"}, {"wmclass": "ssh-askpass"}, ]) -auto_fullscreen = False +auto_fullscreen = True focus_on_window_activation = "smart" wmname = "LG3D"