nvim-old
This commit is contained in:
parent
dbba54cfd8
commit
6380f390ea
26 changed files with 2704 additions and 0 deletions
122
nvim-old/config/all-the-rest.vim
Normal file
122
nvim-old/config/all-the-rest.vim
Normal file
|
|
@ -0,0 +1,122 @@
|
|||
" REMAPS
|
||||
nnoremap <leader>gf :Telescope git_files<cr>
|
||||
|
||||
"Harpoon
|
||||
nnoremap <leader>pf :lua require("harpoon.mark").add_file()<cr>
|
||||
nnoremap <leader>pf :lua require("harpoon.ui").toggle_quick_menu()
|
||||
nnoremap <leader>pf :lua require("harpoon.ui").toggle_quick_menu()
|
||||
|
||||
"set timeout timeoutlen=1000 ttimeoutlen=100
|
||||
"inoremap <C-c> <Esc>:w<CR>
|
||||
"
|
||||
|
||||
"netrw to automatically change working directory
|
||||
au FileType netrw nmap <buffer> <leader>% mt:!tmux split-window -h;tmux select-layout even-horizontal<CR>
|
||||
au FileType netrw nmap <buffer> <leader>z mt:!tmux split-window -h; tmux select-pane -L; tmux kill-pane; tmux select-layout even-horizontal<CR>
|
||||
"open current NETRW directory in a new tab
|
||||
nnoremap <leader>z mt:!tmux split-window -h; tmux select-pane -L; tmux kill-pane; tmux select-layout even-horizontal<CR>
|
||||
"open current NETRW directory in a new tab
|
||||
nnoremap <leader>% mt:!tmux split-window -h;tmux select-layout even-horizontal<CR>
|
||||
|
||||
function! OpenInTmuxPane()
|
||||
" Get the current directory from the netrw buffer
|
||||
let l:current_dir = b:netrw_curdir
|
||||
|
||||
" Get the name of the file under the cursor
|
||||
let l:filename = expand('<cfile>')
|
||||
|
||||
" Combine the directory and filename to get the full path
|
||||
let l:filepath = l:current_dir . '/' . l:filename
|
||||
|
||||
" Prepare the tmux command
|
||||
let l:tmux_command = "tmux split-window -h 'nvim " . l:filepath . "'"
|
||||
|
||||
" Call the command
|
||||
call system(l:tmux_command)
|
||||
endfunction
|
||||
|
||||
nnoremap <leader>4 :call OpenInTmuxPane()<CR>
|
||||
|
||||
"netrw copy a file
|
||||
au FileType netrw nmap <buffer> <leader>yp mt:!cp -r <C-R><C-F> ./<C-R><C-F>
|
||||
"netrw delete under cursor
|
||||
au FileType netrw nmap <buffer> <leader>x mt:!rm -rf <C-R><C-F><CR><CR>
|
||||
"netrw mkdir command
|
||||
au FileType netrw nmap <buffer> <leader>mkdir mt:!mkdir -p
|
||||
|
||||
"let ctrlp search for hidden files and directories
|
||||
let g:ctrlp_show_hidden = 1
|
||||
|
||||
" Neovim :Terminal
|
||||
tmap <Esc> <C-\><C-n>
|
||||
|
||||
" indentLine
|
||||
let g:indentLine_char = '▏'
|
||||
let g:indentLine_defaultGroup = 'NonText'
|
||||
" Disable indentLine from concealing json and markdown syntax (e.g. ```)
|
||||
"let g:vim_json_syntax_conceal = 0
|
||||
"let g:vim_markdown_conceal = 0
|
||||
"let g:vim_markdown_conceal_code_blocks = 0
|
||||
|
||||
" TagBar
|
||||
let g:tagbar_width = 40
|
||||
|
||||
" Limelight
|
||||
let g:limelight_conceal_ctermfg = 'gray'
|
||||
let g:limelight_conceal_guifg = 'gray'
|
||||
nmap <Leader>l :Limelight!!<CR>
|
||||
xmap <Leader>l :Limelight!!<CR>
|
||||
autocmd! User GoyoEnter Limelight
|
||||
autocmd! User GoyoLeave Limelight!
|
||||
" Startify
|
||||
"let g:startify_fortune_use_unicode = 1
|
||||
|
||||
"" Startify + NERDTree on start when no file is specified
|
||||
"let &tags = expand("%:p")
|
||||
|
||||
"COC VIM START
|
||||
|
||||
" Having longer updatetime (default is 4000 ms = 4 s) leads to noticeable
|
||||
" delays and poor user experience.
|
||||
set updatetime=300
|
||||
|
||||
" Don't pass messages to |ins-completion-menu|.
|
||||
set shortmess+=c
|
||||
|
||||
" Always show the signcolumn, otherwise it would shift the text each time
|
||||
" diagnostics appear/become resolved.
|
||||
if has("nvim-0.5.0") || has("patch-8.1.1564")
|
||||
"" Recently vim can merge signcolumn and number column into one
|
||||
set signcolumn=number
|
||||
else
|
||||
set signcolumn=yes
|
||||
endif
|
||||
|
||||
" FixCursorHold for better performance
|
||||
let g:cursorhold_updatetime = 100
|
||||
|
||||
" context.vim
|
||||
let g:context_nvim_no_redraw =1
|
||||
|
||||
""" Filetype-Specific Configurations
|
||||
|
||||
" HTML, XML, Jinja
|
||||
autocmd FileType html setlocal shiftwidth=2 tabstop=2 softtabstop=2
|
||||
autocmd FileType css setlocal shiftwidth=2 tabstop=2 softtabstop=2
|
||||
autocmd FileType xml setlocal shiftwidth=2 tabstop=2 softtabstop=2
|
||||
autocmd FileType htmldjango setlocal shiftwidth=2 tabstop=2 softtabstop=2
|
||||
autocmd FileType htmldjango inoremap {{ {{ }}<left><left><left>
|
||||
autocmd FileType htmldjango inoremap {% {% %}<left><left><left>
|
||||
autocmd FileType htmldjango inoremap {# {# #}<left><left><left>
|
||||
|
||||
" Markdown and Journal
|
||||
autocmd FileType markdown setlocal shiftwidth=2 tabstop=2 softtabstop=2
|
||||
autocmd FileType journal setlocal shiftwidth=2 tabstop=2 softtabstop=2
|
||||
|
||||
"scroll sync lock
|
||||
nnoremap <leader><leader>sl :set scb!<CR>
|
||||
|
||||
nmap <silent> <leader>no :set hlsearch!<CR>
|
||||
|
||||
let g:netrw_bufsettings = 'noma nomod nu nobl nowrap ro'
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue