mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-05 00:41:44 +05:30
- bashrc: source `.profile` and not `profile` - kitty: Remove background-blur, it was making terminal slow - kitty: ssh: Rename the terminal to `xterm-256color` cause most cloud linux don't have kitty terminal info by default - nvim: `get_active_clients` marked for removal by nvim, replaced - nvim: completion: don't auto complete on command mode - nvim: Use `flash.nvim` for jumping instead of `vim-easymotion` - vim: Open file tree `<leader>e` -> `<leader><tab>` - profile: KVM: Use the system access by default
31 lines
939 B
VimL
31 lines
939 B
VimL
" THEME
|
|
let g:lightline = { 'colorscheme': 'onedark' }
|
|
colorscheme onedark
|
|
|
|
" NERDTree Plugin configurations
|
|
let g:NERDTreeShowHidden = 1
|
|
let g:NERDTreeWinSize = 25
|
|
|
|
" Map nerdtree to <Leader>e
|
|
" Changes the pwd and opens the VCS root
|
|
" Placed here because ideavim doesn't understand :tcd
|
|
nnoremap <leader><TAB> :tcd %:h<CR> :NERDTreeToggleVCS<CR>
|
|
|
|
" Map easymotion Plugin to <Leader>j
|
|
nnoremap <leader>j <Plug>(easymotion-s)
|
|
|
|
" Show the undo tree
|
|
nnoremap <leader>u :UndotreeToggle<CR>
|
|
|
|
" Fugitive
|
|
nnoremap <leader>gg :0G<cr>
|
|
|
|
" Quickscope
|
|
" Trigger a highlight in the appropriate direction when pressing these keys:
|
|
let g:qs_highlight_on_keys = ['f', 'F', 't', 'T']
|
|
|
|
" Quickscope in VSCode
|
|
" https://github.com/vscode-neovim/vscode-neovim/wiki/Plugins#quick-scope
|
|
highlight QuickScopePrimary guifg='#afff5f' gui=underline ctermfg=155 cterm=underline
|
|
highlight QuickScopeSecondary guifg='#00C7DF' gui=underline ctermfg=81 cterm=underline
|