clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

nvim configs updated

sspaeti db058fdf b99df8ea

+25 -13
+25 -13
nvim/init.vim
··· 1 - "If you're using tmux version 2.2 or later, you can remove the outermost $TMUX check and use tmux's 24-bit color support 1 + " If you're using tmux version 2.2 or later, you can remove the outermost $TMUX check and use tmux's 24-bit color support 2 2 "Use 24-bit (true-color) mode in Vim/Neovim when outside tmux. 3 3 "(see < http://sunaku.github.io/tmux-24bit-color.html#usage > for more information.) 4 4 if (empty($TMUX)) ··· 42 42 Plug 'jmcantrell/vim-virtualenv' 43 43 44 44 Plug 'liuchengxu/vim-which-key' 45 + Plug 'github/copilot.vim' 45 46 call plug#end() 46 47 "install with :PlugInstall 47 48 ··· 176 177 vnoremap > >gv 177 178 178 179 " Better window navigation 179 - nnoremap <C-h> <C-w>h 180 - nnoremap <C-j> <C-w>j 181 - nnoremap <C-k> <C-w>k 182 - nnoremap <C-l> <C-w>l 180 + " nnoremap <C-h> <C-w>h 181 + " nnoremap <C-j> <C-w>j 182 + " nnoremap <C-k> <C-w>k 183 + " nnoremap <C-l> <C-w>l 183 184 184 185 "tab and airline tabs navigation 185 - nmap <leader>1 :bfirst<CR> 186 - nmap <leader>2 :bfirst<CR>:bn<CR> 187 - nmap <leader>3 :bfirst<CR>:2bn<CR> 188 - nmap <leader>4 :bfirst<CR>:3bn<CR> 189 - nmap <leader>5 :bfirst<CR>:4bn<CR> 190 - nmap <leader>6 :bfirst<CR>:5bn<CR> 191 - nmap <leader>7 :bfirst<CR>:6bn<CR> 192 - nmap <leader>8 :bfirst<CR>:7bn<CR> 186 + " nmap <leader>1 :bfirst<CR> 187 + " nmap <leader>2 :bfirst<CR>:bn<CR> 188 + " nmap <leader>3 :bfirst<CR>:2bn<CR> 189 + " nmap <leader>4 :bfirst<CR>:3bn<CR> 190 + " nmap <leader>5 :bfirst<CR>:4bn<CR> 191 + " nmap <leader>6 :bfirst<CR>:5bn<CR> 192 + " nmap <leader>7 :bfirst<CR>:6bn<CR> 193 + " nmap <leader>8 :bfirst<CR>:7bn<CR> 194 + 195 + " Split window 196 + nmap ss :split<Return><C-w>w 197 + nmap sv :vsplit<Return><C-w>w" Move window 198 + nmap st :tabnew<Return> 199 + map sh <C-w>h 200 + map sk <C-w>k 201 + map sj <C-w>j 202 + map sl <C-w>l" Switch tab 203 + nmap <S-Tab> :tabprev<Return> 204 + nmap <Tab> :tabnext<Return> 193 205 194 206 " Find files using Telescope command-line sugar. 195 207 nnoremap <leader>ff <cmd>Telescope find_files<cr>