Last active
June 5, 2024 11:48
-
-
Save TheCedarPrince/7b9b51af4c146880f17c39407815b594 to your computer and use it in GitHub Desktop.
Revisions
-
TheCedarPrince revised this gist
Aug 30, 2022 . 1 changed file with 116 additions and 103 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,9 +5,12 @@ " TURNS LINE NUMBERING ON set nu " TRIGGER `autoread` WHEN FILES CHANGES ON DISK set autoread autocmd FocusGained,BufEnter,CursorHold,CursorHoldI * if mode() != 'c' | checktime | endif " PLACE THE CURSOR ANYWHERE set virtualedit=all " ENABLES A SYSTEM-WIDE VIMRC set nocompatible @@ -18,6 +21,9 @@ syntax on " ENABLE MOUSE USE IN ALL MODES set mouse=a " ENABLES SPELLCHECK set spell " ENABLE SAVING OF TAB TITLES FOR SESSIONS set sessionoptions+=tabpages,globals @@ -33,39 +39,37 @@ filetype plugin on " LOCATION OF WHERE PLUGINS ARE INSTALLED call plug#begin('~/.vim/addons') " Git gutter for Vim Plug 'airblade/vim-gitgutter' " Preview markdown on your modern browser with synchronised scrolling and flexible configuration. Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() } } " Highlight lines in buffer " Plug 'junegunn/limelight.vim' " Distraction free writing Plug 'junegunn/goyo.vim' " Terminal in floating window Plug 'voldikss/vim-floaterm' " Vim test snippets Plug 'SirVer/ultisnips' Plug 'honza/vim-snippets' " Automatic pane resizing " Plug 'camspiers/lens.vim' " Support for Julia Plug 'JuliaEditorSupport/julia-vim' " Formatting Julia Files Plug 'kdheepak/JuliaFormatter.vim' " Formatting of HTML, JS, CSS, JSON, and JSX Files Plug 'maksimr/vim-jsbeautify' " Adding support for LaTeX Plug 'lervag/vimtex' @@ -75,34 +79,30 @@ Plug 'xuhdev/vim-latex-live-preview', { 'for': 'tex' } " Moving through Vim easily Plug 'easymotion/vim-easymotion' " Command line fuzzy finder Plug 'junegunn/fzf', { 'do': './install --bin' } "Checks latest fzf binary Plug 'junegunn/fzf.vim' " The fancy start screen for Vim Plug 'mhinz/vim-startify' " Effective search and listing of queries Plug 'dyng/ctrlsf.vim' " Easy commenting for Vim Plug 'preservim/nerdcommenter' " Support for Todo.txt files Plug 'dbeniamine/todo.txt-vim' " Formatting for SQL scripts Plug 'mattn/vim-sqlfmt' " Gruvbox color theme for Vim Plug 'morhetz/gruvbox' " Window swapping powers Plug 'wesQ3/vim-windowswap' " Editing Jupyter files in Vim Plug 'goerz/jupytext.vim' @@ -111,6 +111,9 @@ Plug 'goerz/jupytext.vim' Plug 'vim-pandoc/vim-pandoc' Plug 'vim-pandoc/vim-pandoc-syntax' "Also used for Markdown formatting " Better Outliner - I cannot stand the TOC from pandoc! Plug 'vim-voom/VOoM' " VIM Table Mode for instant table creation. Plug 'dhruvasagar/vim-table-mode' @@ -123,6 +126,9 @@ else Plug 'roxma/vim-hug-neovim-rpc' endif " Deoplete word autocompletion Plug 'deathlyfrantic/deoplete-spell' " Tab naming powers Plug 'gcmt/taboo.vim' @@ -141,6 +147,9 @@ Plug 'tpope/vim-obsession' " Rethinking Vim as a tool for writing Plug 'reedes/vim-pencil' " Small scratch space for fleeting notes Plug 'mtth/scratch.vim' " Lean & mean status/tabline for vim that's light as air Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline-themes' "Installs themes for airline @@ -163,6 +172,19 @@ let g:JuliaFormatter_options = { \ 'whitespace_ops_in_indices' : v:true, \ } """"""""""""""""""""" " VIM VISUAL MULTI """"""""""""""""""""" let g:VM_maps = {} let g:VM_maps["Add Cursor Down"] = '<C-j>' let g:VM_maps["Add Cursor Up"] = '<C-k>' """"""""""""""""""""" " VIM VISUAL MULTI """"""""""""""""""""" let g:UltiSnipsSnippetDirectories=["UltiSnips", "my_snippets"] """"""""""""""""" "MARKDOWN-PREVIEW @@ -184,6 +206,31 @@ let g:mkdp_preview_options = { let g:mkdp_browser = 'vivaldi' """"""""""""""""""""" " CTRLSF """"""""""""""""""""" let g:ctrlsf_preview_position = 'inside' let g:ctrlsf_position = 'right' let g:ctrlsf_auto_preview = 1 let g:ctrlsf_default_root = 'project+ww' let g:ctrlsf_winsize = '20%' let g:ctrlsf_context = '-C 1' """"""""""""""""""""" " LIMELIGHT """"""""""""""""""""" " autocmd! User GoyoEnter Limelight " autocmd! User GoyoLeave Limelight! """"""""""""""""""""" " GOYO """"""""""""""""""""" let g:goyo_height = 80 let g:goyo_width = 80 """"""""""""""""""""" " AIRLINE """"""""""""""""""""" @@ -226,31 +273,11 @@ autocmd FileType html noremap <buffer> <c-f> :call HtmlBeautify()<cr> " for css or scss autocmd FileType css noremap <buffer> <c-f> :call CSSBeautify()<cr> """""""""""""""""""""""""""""" " JUPYTEXT """""""""""""""""""""""""""""" let g:jupytext_filetype_map = { 'py': 'python' } """""""""""""""""""""""""""""" " VIMPENCIL """""""""""""""""""""""""""""" @@ -262,6 +289,8 @@ augroup pencil autocmd FileType markdown call pencil#init({'wrap' : 'soft'}) autocmd FileType julia call pencil#init({'wrap' : 'soft'}) autocmd FileType tex call pencil#init({'wrap' : 'soft'}) autocmd FileType ctrlsf call pencil#init({'wrap' : 'soft'}) autocmd FileType voomtree call pencil#init({'wrap' : 'soft'}) augroup END """""""""""""""""""""""""""""" @@ -274,6 +303,18 @@ set background=dark " Setting dark mode " Making comments italic highlight Comment cterm=italic """""""""""""""""""""""""""""" " TODOTXT-VIM """""""""""""""""""""""""""""" let g:Todo_txt_prefix_creation_date=1 let g:Todo_fold_char='+' let g:TodoTxtForceDoneName='Done.txt' " Autocompletion au filetype todo setlocal omnifunc=todo#Complete au filetype todo imap <buffer> + +<C-X><C-O> au filetype todo imap <buffer> @ @<C-X><C-O> """""""""""""""""""""""""""""" " VIM-GITGUTTER """""""""""""""""""""""""""""" @@ -297,12 +338,13 @@ let g:vim_markdown_folding_level = 1 " VIM-PANDOC """""""""""""""""""""""""""""" let g:pandoc#filetypes#handled = ['pandoc', 'markdown'] let g:pandoc#modules#disabled = ['folding', 'toc'] let g:pandoc#folding#fold_fenced_codeblocks = 1 let g:pandoc#folding#fold_yaml = 1 let g:pandoc#biblio#bibs = ['/home/src/Knowledgebase/Zettelkasten/zettel.bib', '/home/src/Projects/C3T/citations.bib'] let g:pandoc#toc#close_after_navigating = 0 let g:pandoc#toc#position = 'left' let g:pandoc#toc#shift = 0 let g:pandoc#folding#fdc = 0 """""""""""""""""""""""""""""" @@ -333,24 +375,19 @@ call deoplete#custom#var('omni', 'input_patterns', { \ 'tex': g:vimtex#re#deoplete \}) """""""""""""""""""""""""""""" " FZF-VIM """""""""""""""""""""""""""""" let $FZF_DEFAULT_OPTS='--reverse' let g:fzf_layout = { 'window': { 'width': 0.8, 'height': 0.8 } } let g:fzf_action = { \ 'ctrl-t': 'tab split', \ 'ctrl-x': 'split', \ 'ctrl-v': 'vsplit', \ 'ctrl-o': ':r !echo', \ } """""""""""""""""""""""""""""" " VIM-TEX @@ -378,37 +415,15 @@ let g:livepreview_previewer = 'zathura' let g:livepreview_use_biber = 1 """""""""""""""""""""""""""""" " VIM-FLOATERM """""""""""""""""""""""""""""" let g:floaterm_open_command = 'vsplit' """""""""""""""""""""""""""""" " LENS """""""""""""""""""""""""""""" let g:lens#disabled_filetypes = ['nerdtree', 'fzf', 'voomtree'] """""""""""""""""""""""""""""" " VIM-TABLE-MODE @@ -439,13 +454,6 @@ inoreabbrev <expr> __ " code/string searching tool for multifile exploration let g:ackprg = 'ag --nogroup --nocolor --column' function! TwiddleCase(str) if a:str ==# toupper(a:str) let result = tolower(a:str) @@ -457,7 +465,6 @@ function! TwiddleCase(str) return result endfunction """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " KEY REMAPS """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -497,6 +504,9 @@ tnoremap <silent> <F7> <C-\><C-n>:RnvimrToggle<CR> " Automatic formatting for Julia files autocmd FileType julia nnoremap <buffer> <c-f> :JuliaFormatterFormat<cr> " Automatic formatting for SQL files autocmd FileType sql nnoremap <buffer> <c-f> :SQLFmt<cr> " Maps quit noremap <leader>q :q<cr> @@ -517,3 +527,6 @@ nnoremap <Leader><BS> :noh<cr> " Activates Twiddle case to switch between cases of selected text vnoremap ~ y:call setreg('', TwiddleCase(@"), getregtype(''))<CR>gv""Pgv " Mappings for venn vnoremap <leader>g :VBox<CR> -
TheCedarPrince revised this gist
May 15, 2021 . 1 changed file with 13 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -54,12 +54,18 @@ Plug 'kdheepak/JuliaFormatter.vim' " Automatic pane resizing Plug 'camspiers/lens.vim' " Region zooming for Vim Plug 'chrisbra/NrrwRgn' " LSP completion for Neovim " Plug 'neovim/nvim-lsp' " Formatting of HTML, JS, CSS, JSON, and JSX Files Plug 'maksimr/vim-jsbeautify' " Scratch Pad for quick notes Plug 'mtth/scratch.vim' " Adding support for LaTeX Plug 'lervag/vimtex' @@ -69,8 +75,12 @@ Plug 'xuhdev/vim-latex-live-preview', { 'for': 'tex' } " Moving through Vim easily Plug 'easymotion/vim-easymotion' " Text snippets for everything Plug 'SirVer/ultisnips' Plug 'honza/vim-snippets' " Emoji support " Plug 'fszymanski/deoplete-emoji' " Command line fuzzy finder Plug 'junegunn/fzf', { 'do': './install --bin' } "Checks latest fzf binary @@ -79,23 +89,20 @@ Plug 'junegunn/fzf.vim' " Easy commenting for Vim Plug 'preservim/nerdcommenter' " Support for Todo.txt files Plug 'freitass/todo.txt-vim' " Gruvbox color theme for Vim Plug 'morhetz/gruvbox' " Sends text to a target for execution " Plug 'jpalardy/vim-slime' " Ranger file browser integration Plug 'kevinhwang91/rnvimr', {'do': 'make sync'} " Surrounding words with characters in Vim " Plug 'tpope/vim-surround' " Editing Jupyter files in Vim Plug 'goerz/jupytext.vim' -
TheCedarPrince revised this gist
Feb 1, 2021 . 1 changed file with 19 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -34,7 +34,10 @@ filetype plugin on call plug#begin('~/.vim/addons') " Git wrapper for Vim "Plug 'tpope/vim-fugitive' " Git gutter for Vim Plug 'airblade/vim-gitgutter' " Preview markdown on your modern browser with synchronised scrolling and flexible configuration. Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() } } @@ -153,6 +156,7 @@ let g:JuliaFormatter_options = { \ 'whitespace_ops_in_indices' : v:true, \ } """"""""""""""""" "MARKDOWN-PREVIEW """"""""""""""""" @@ -263,6 +267,19 @@ set background=dark " Setting dark mode " Making comments italic highlight Comment cterm=italic """""""""""""""""""""""""""""" " VIM-GITGUTTER """""""""""""""""""""""""""""" set updatetime=250 let g:gitgutter_max_signs = 500 let g:gitgutter_override_sign_column_highlight = 0 highlight clear SignColumn highlight GitGutterAdd ctermfg=2 highlight GitGutterChange ctermfg=3 highlight GitGutterDelete ctermfg=1 highlight GitGutterChangeDelete ctermfg=4 """""""""""""""""""""""""""""" " TABULAR & VIM-MARKDOWN """""""""""""""""""""""""""""" @@ -492,4 +509,4 @@ nnoremap <C-b> :Buffers<Cr> nnoremap <Leader><BS> :noh<cr> " Activates Twiddle case to switch between cases of selected text vnoremap ~ y:call setreg('', TwiddleCase(@"), getregtype(''))<CR>gv""Pgv -
TheCedarPrince revised this gist
Jan 17, 2021 . 1 changed file with 35 additions and 9 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -86,14 +86,17 @@ Plug 'freitass/todo.txt-vim' Plug 'morhetz/gruvbox' " Sends text to a target for execution Plug 'jpalardy/vim-slime' " Ranger file browser integration Plug 'kevinhwang91/rnvimr', {'do': 'make sync'} " Surrounding words with characters in Vim Plug 'tpope/vim-surround' " Editing Jupyter files in Vim Plug 'goerz/jupytext.vim' " BibTeX Handling Plug 'vim-pandoc/vim-pandoc' Plug 'vim-pandoc/vim-pandoc-syntax' "Also used for Markdown formatting @@ -183,6 +186,15 @@ let g:airline#extensions#wordcount#filetypes = '\vasciidoc|help|mail|markdown|pa " Shows all buffers when only one tab open let g:airline#extensions#tabline#enabled = 0 " Removes fileformat let g:airline_section_y = '' " Removes section on whitespace errors, etc. let g:airline_section_warning = '' " Disable SPELL section let g:airline_detect_spell = 0 " Handles file path displays let g:airline#extensions#tabline#formatter = 'unique_tail_improved' @@ -208,6 +220,11 @@ autocmd FileType css noremap <buffer> <c-f> :call CSSBeautify()<cr> """""""""""""""""""""""""""""" set completefunc=emoji#complete """""""""""""""""""""""""""""" " JUPYTEXT """""""""""""""""""""""""""""" let g:jupytext_filetype_map = { 'py': 'python' } """""""""""""""""""""""""""""" " NVIM-LSP """""""""""""""""""""""""""""" @@ -243,6 +260,8 @@ let g:gruvbox_termcolors=16 let g:gruvbox_contrast_dark = 'medium' colorscheme gruvbox set background=dark " Setting dark mode " Making comments italic highlight Comment cterm=italic """""""""""""""""""""""""""""" " TABULAR & VIM-MARKDOWN @@ -294,8 +313,13 @@ call deoplete#custom#var('omni', 'input_patterns', { " VIM-SLIME """""""""""""""""""""""""""""" let g:slime_no_mappings = 1 let g:slime_target = 'tmux' let g:slime_paste_file = '$HOME/.slime_paste' let g:slime_python_ipython = 1 xmap <C-c><C-s> <Plug>SlimeRegionSend nmap <C-c><C-s> <Plug>SlimeParagraphSend """""""""""""""""""""""""""""" " FZF-VIM @@ -360,7 +384,7 @@ let g:rnvimr_layout = { " VIM-FLOATERM """""""""""""""""""""""""""""" let g:floaterm_open_command = 'vsplit' """""""""""""""""""""""""""""" " VIM-TABLE-MODE @@ -426,9 +450,10 @@ nnoremap <silent> <F8> :FloatermPrev<CR> tnoremap <silent> <F8> <C-\><C-n>:FloatermPrev<CR> nnoremap <silent> <F10> :FloatermNext<CR> tnoremap <silent> <F10> <C-\><C-n>:FloatermNext<CR> inoremap <silent> <F11> <C-c>:FloatermToggle<CR> nnoremap <silent> <F11> :FloatermToggle<CR> tnoremap <silent> <F11> <C-\><C-n>:FloatermToggle<CR> tnoremap <silent> <M-o> <C-\><C-n><CR> nnoremap <C-c><C-c> :FloatermSend<CR> vnoremap <C-c><C-c> :FloatermSend<CR> @@ -442,7 +467,8 @@ map <leader><Space>w <Plug>(easymotion-bd-w) nmap <leader><Space>w <Plug>(easymotion-overwin-w) " Maps Ranger nnoremap <silent> <F7> :RnvimrToggle<CR> tnoremap <silent> <F7> <C-\><C-n>:RnvimrToggle<CR> " Automatic formatting for Julia files autocmd FileType julia nnoremap <buffer> <c-f> :JuliaFormatterFormat<cr> @@ -466,4 +492,4 @@ nnoremap <C-b> :Buffers<Cr> nnoremap <Leader><BS> :noh<cr> " Activates Twiddle case to switch between cases of selected text vnoremap ~ y:call setreg('', TwiddleCase(@"), getregtype(''))<CR>gv""Pgv -
TheCedarPrince revised this gist
Nov 29, 2020 . 1 changed file with 54 additions and 20 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -48,6 +48,12 @@ Plug 'JuliaEditorSupport/julia-vim' " Formatting Julia Files Plug 'kdheepak/JuliaFormatter.vim' " Automatic pane resizing Plug 'camspiers/lens.vim' " LSP completion for Neovim " Plug 'neovim/nvim-lsp' " Formatting of HTML, JS, CSS, JSON, and JSX Files Plug 'maksimr/vim-jsbeautify' @@ -80,7 +86,7 @@ Plug 'freitass/todo.txt-vim' Plug 'morhetz/gruvbox' " Sends text to a target for execution "Plug 'jpalardy/vim-slime' " Ranger file browser integration Plug 'kevinhwang91/rnvimr', {'do': 'make sync'} @@ -187,8 +193,6 @@ let g:airline_theme='gruvbox' " VIM-JSBEAUTIFY """""""""""""""""""""""""""""" ".vimrc autocmd FileType javascript noremap <buffer> <c-f> :call JsBeautify()<cr> " for json autocmd FileType json noremap <buffer> <c-f> :call JsonBeautify()<cr> @@ -204,6 +208,21 @@ autocmd FileType css noremap <buffer> <c-f> :call CSSBeautify()<cr> """""""""""""""""""""""""""""" set completefunc=emoji#complete """""""""""""""""""""""""""""" " NVIM-LSP """""""""""""""""""""""""""""" "lua << EOF "require'nvim_lsp'.julials.setup{} "EOF "autocmd Filetype julia setlocal omnifunc=v:lua.vim.lsp.omnifunc "nnoremap <silent> <c-]> <cmd>lua vim.lsp.buf.definition()<CR> "nnoremap <silent> K <cmd>lua vim.lsp.buf.hover()<CR> "nnoremap <silent> gr <cmd>lua vim.lsp.buf.references()<CR> "nnoremap <silent> g0 <cmd>lua vim.lsp.buf.document_symbol()<CR> """""""""""""""""""""""""""""" " VIMPENCIL """""""""""""""""""""""""""""" @@ -275,8 +294,8 @@ call deoplete#custom#var('omni', 'input_patterns', { " VIM-SLIME """""""""""""""""""""""""""""" " let g:slime_target = 'tmux' " let g:slime_paste_file = '$HOME/.slime_paste' """""""""""""""""""""""""""""" " FZF-VIM @@ -327,6 +346,22 @@ let g:rnvimr_ex_enable = 1 " Make Ranger to be hidden after picking a file let g:rnvimr_enable_picker = 1 " Customize the initial layout let g:rnvimr_layout = { \ 'relative': 'editor', \ 'width': float2nr(round(1.0 * &columns)), \ 'height': float2nr(round(0.42 * &lines)), \ 'col': float2nr(round(0.0 * &columns)), \ 'row': float2nr(round(0.54 * &lines)), \ 'style': 'minimal' \ } """""""""""""""""""""""""""""" " VIM-FLOATERM """""""""""""""""""""""""""""" let g:floaterm_open_command = 'tabe' """""""""""""""""""""""""""""" " VIM-TABLE-MODE """""""""""""""""""""""""""""" @@ -379,25 +414,24 @@ endfunction " KEY REMAPS """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " Enables ripgrep for file completion via fzf inoremap <expr> <c-x><c-f> fzf#vim#complete#path('rg --files') " Maps leader to the spacebar map <Space> <Leader> nnoremap <silent> <F9> :FloatermNew --height=0.4 --width=0.98 --wintype=floating --position=bottom --autoclose=2 --title= tnoremap <silent> <F9> <C-\><C-n>:FloatermNew --height=0.4 --width=0.98 --wintype=floating --position=bottom --autoclose=2 --title= nnoremap <silent> <F8> :FloatermPrev<CR> tnoremap <silent> <F8> <C-\><C-n>:FloatermPrev<CR> nnoremap <silent> <F10> :FloatermNext<CR> tnoremap <silent> <F10> <C-\><C-n>:FloatermNext<CR> nnoremap <silent> <F12> :FloatermToggle<CR> tnoremap <silent> <F12> <C-\><C-n>:FloatermToggle<CR> tnoremap <silent> <F11> <C-\><C-n><CR> nnoremap <C-c><C-c> :FloatermSend<CR> vnoremap <C-c><C-c> :FloatermSend<CR> " Maps easymotion jumps for lines map <leader><space>l <Plug>(easymotion-bd-jk) @@ -411,7 +445,7 @@ nmap <leader><Space>w <Plug>(easymotion-overwin-w) nmap <leader><Space>r :RnvimrToggle<CR> " Automatic formatting for Julia files autocmd FileType julia nnoremap <buffer> <c-f> :JuliaFormatterFormat<cr> " Maps quit noremap <leader>q :q<cr> @@ -420,7 +454,7 @@ noremap <leader>q :q<cr> noremap <c-q> :qa<cr> " Maps write nnoremap <leader>w :w<cr> " Maps ripgrep file searching function nnoremap <C-g> :Rg<Cr> -
TheCedarPrince renamed this gist
Nov 6, 2020 . 1 changed file with 47 additions and 13 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,6 +5,10 @@ " TURNS LINE NUMBERING ON set nu " trigger `autoread` when files changes on disk set autoread autocmd FocusGained,BufEnter,CursorHold,CursorHoldI * if mode() != 'c' | checktime | endif " ENABLES A SYSTEM-WIDE VIMRC set nocompatible @@ -35,8 +39,8 @@ Plug 'tpope/vim-fugitive' " Preview markdown on your modern browser with synchronised scrolling and flexible configuration. Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() } } " Terminal in floating window Plug 'voldikss/vim-floaterm' " Support for Julia Plug 'JuliaEditorSupport/julia-vim' @@ -66,12 +70,21 @@ Plug 'junegunn/fzf.vim' " Easy commenting for Vim Plug 'preservim/nerdcommenter' " Fade inactive buffers and preserve syntax highlighting Plug 'TaDaa/vimade' " Support for Todo.txt files Plug 'freitass/todo.txt-vim' " Gruvbox color theme for Vim Plug 'morhetz/gruvbox' " Sends text to a target for execution Plug 'jpalardy/vim-slime' " Ranger file browser integration Plug 'kevinhwang91/rnvimr', {'do': 'make sync'} " Surrounding words with characters in Vim Plug 'tpope/vim-surround' @@ -100,9 +113,6 @@ Plug 'mg979/vim-visual-multi' " Adds file type icons to Vim plugins Plug 'ryanoasis/vim-devicons' " Distraction-free writing in Vim Plug 'junegunn/goyo.vim' @@ -225,7 +235,7 @@ let g:vim_markdown_folding_level = 1 " VIM-PANDOC """""""""""""""""""""""""""""" let g:pandoc#filetypes#handled = ['pandoc', 'markdown'] let g:pandoc#modules#disabled = ['folding'] let g:pandoc#folding#fold_fenced_codeblocks = 1 let g:pandoc#folding#fold_yaml = 1 let g:pandoc#biblio#bibs = ['/home/src/Knowledgebase/Zettelkasten/zettel.bib'] @@ -246,7 +256,7 @@ let g:pandoc#syntax#conceal#blacklist = ['strikeout', 'list', 'quotes'] let g:deoplete#enable_at_startup = 1 " Chooses backend for bibtex autocompletion "let g:pandoc#completion#bib#mode = 'citeproc' " Disables autocompletion while writing "call deoplete#custom#option('auto_complete', v:false) @@ -300,6 +310,23 @@ let g:vimtex_fold_types = { let g:livepreview_previewer = 'zathura' let g:livepreview_use_biber = 1 """""""""""""""""""""""""""""" " VIMADE """""""""""""""""""""""""""""" let g:vimade = {} let g:vimade.fadelevel = 0.1 let g:vimade.basebg = [75, 75, 75] """""""""""""""""""""""""""""" " RNVIMR """""""""""""""""""""""""""""" " Make Ranger replace Netrw and be the file explorer let g:rnvimr_ex_enable = 1 " Make Ranger to be hidden after picking a file let g:rnvimr_enable_picker = 1 """""""""""""""""""""""""""""" " VIM-TABLE-MODE """""""""""""""""""""""""""""" @@ -336,12 +363,6 @@ let g:fzf_action = { \ 'ctrl-o': ':r !echo', \ } function! TwiddleCase(str) if a:str ==# toupper(a:str) let result = tolower(a:str) @@ -368,6 +389,16 @@ inoremap <expr> <c-x><c-f> fzf#vim#complete#path('rg --files') " Maps leader to the spacebar map <Space> <Leader> " Mapping for Floating terminals nnoremap <silent> <F5> :FloatermNew --height=0.6 --width=0.5 --wintype=floating --position=center --autoclose=2 $SHELL<CR> tnoremap <silent> <F5> <C-\><C-n>:FloatermNew --height=0.6 --width=0.5 --wintype=floating --position=center --autoclose=2 $SHELL<CR> nnoremap <silent> <F3> :FloatermPrev<CR> tnoremap <silent> <F3> <C-\><C-n>:FloatermPrev<CR> nnoremap <silent> <F6> :FloatermNext<CR> tnoremap <silent> <F6> <C-\><C-n>:FloatermNext<CR> nnoremap <silent> <F1> :FloatermToggle<CR> tnoremap <silent> <F1> <C-\><C-n>:FloatermToggle<CR> " Maps easymotion jumps for lines map <leader><space>l <Plug>(easymotion-bd-jk) nmap <leader><space>l <Plug>(easymotion-overwin-line) @@ -376,6 +407,9 @@ nmap <leader><space>l <Plug>(easymotion-overwin-line) map <leader><Space>w <Plug>(easymotion-bd-w) nmap <leader><Space>w <Plug>(easymotion-overwin-w) " Maps Ranger nmap <leader><Space>r :RnvimrToggle<CR> " Automatic formatting for Julia files nnoremap <buffer> <c-f> :JuliaFormatterFormat<cr> -
TheCedarPrince revised this gist
Oct 29, 2020 . 1 changed file with 14 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,6 +11,12 @@ set nocompatible " ENSURES DEFVAULT VIM SYNTAX HIGHLIGHTING syntax on " ENABLE MOUSE USE IN ALL MODES set mouse=a " ENABLE SAVING OF TAB TITLES FOR SESSIONS set sessionoptions+=tabpages,globals set encoding=utf-8 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -146,6 +152,8 @@ let g:mkdp_preview_options = { \ 'flowchart_diagrams': {} \ } let g:mkdp_browser = 'vivaldi' """"""""""""""""""""" " AIRLINE """"""""""""""""""""" @@ -220,7 +228,7 @@ let g:pandoc#filetypes#handled = ['pandoc', 'markdown'] let g:pandoc#modules#disabled = ['spell'] let g:pandoc#folding#fold_fenced_codeblocks = 1 let g:pandoc#folding#fold_yaml = 1 let g:pandoc#biblio#bibs = ['/home/src/Knowledgebase/Zettelkasten/zettel.bib'] let g:pandoc#toc#close_after_navigating = 0 let g:pandoc#toc#position = 'bottom' let g:pandoc#folding#fdc = 0 @@ -238,7 +246,7 @@ let g:pandoc#syntax#conceal#blacklist = ['strikeout', 'list', 'quotes'] let g:deoplete#enable_at_startup = 1 " Chooses backend for bibtex autocompletion "let g:pandoc#completion#bib#mode = 'citeproc' " Disables autocompletion while writing "call deoplete#custom#option('auto_complete', v:false) @@ -369,11 +377,14 @@ map <leader><Space>w <Plug>(easymotion-bd-w) nmap <leader><Space>w <Plug>(easymotion-overwin-w) " Automatic formatting for Julia files nnoremap <buffer> <c-f> :JuliaFormatterFormat<cr> " Maps quit noremap <leader>q :q<cr> " Maps quit all noremap <c-q> :qa<cr> " Maps write nnoremap <leader>w :w<cr> -
TheCedarPrince revised this gist
Oct 26, 2020 . 1 changed file with 8 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -85,6 +85,9 @@ else Plug 'roxma/vim-hug-neovim-rpc' endif " Tab naming powers Plug 'gcmt/taboo.vim' " Multiple cursors for editing Plug 'mg979/vim-visual-multi' @@ -97,6 +100,9 @@ Plug 'preservim/nerdtree' " Distraction-free writing in Vim Plug 'junegunn/goyo.vim' " Vim session saving Plug 'tpope/vim-obsession' " Rethinking Vim as a tool for writing Plug 'reedes/vim-pencil' @@ -248,10 +254,10 @@ call deoplete#custom#var('omni', 'input_patterns', { \}) """""""""""""""""""""""""""""" " VIM-SLIME """""""""""""""""""""""""""""" let g:slime_target = "tmux" let g:slime_paste_file = "$HOME/.slime_paste" """""""""""""""""""""""""""""" -
TheCedarPrince created this gist
Oct 19, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,384 @@ """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " VIM SETTINGS """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " TURNS LINE NUMBERING ON set nu " ENABLES A SYSTEM-WIDE VIMRC set nocompatible " ENSURES DEFVAULT VIM SYNTAX HIGHLIGHTING syntax on set encoding=utf-8 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " PLUGINS """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " ENABLES PLUGINS TO WORK filetype plugin on " LOCATION OF WHERE PLUGINS ARE INSTALLED call plug#begin('~/.vim/addons') " Git wrapper for Vim Plug 'tpope/vim-fugitive' " Preview markdown on your modern browser with synchronised scrolling and flexible configuration. Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() } } " Automatic Window Resizing Plug 'camspiers/lens.vim' " Support for Julia Plug 'JuliaEditorSupport/julia-vim' " Formatting Julia Files Plug 'kdheepak/JuliaFormatter.vim' " Formatting of HTML, JS, CSS, JSON, and JSX Files Plug 'maksimr/vim-jsbeautify' " Adding support for LaTeX Plug 'lervag/vimtex' " Live Previewing of LaTeX Documents Plug 'xuhdev/vim-latex-live-preview', { 'for': 'tex' } " Moving through Vim easily Plug 'easymotion/vim-easymotion' " Emoji support Plug 'fszymanski/deoplete-emoji' " Command line fuzzy finder Plug 'junegunn/fzf', { 'do': './install --bin' } "Checks latest fzf binary Plug 'junegunn/fzf.vim' " Easy commenting for Vim Plug 'preservim/nerdcommenter' " Gruvbox color theme for Vim Plug 'morhetz/gruvbox' " Sends text to a target for execution Plug 'jpalardy/vim-slime' " Surrounding words with characters in Vim Plug 'tpope/vim-surround' " BibTeX Handling Plug 'vim-pandoc/vim-pandoc' Plug 'vim-pandoc/vim-pandoc-syntax' "Also used for Markdown formatting " VIM Table Mode for instant table creation. Plug 'dhruvasagar/vim-table-mode' " Deoplete Completion framework if has('nvim') Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } else Plug 'Shougo/deoplete.nvim' Plug 'roxma/nvim-yarp' Plug 'roxma/vim-hug-neovim-rpc' endif " Multiple cursors for editing Plug 'mg979/vim-visual-multi' " Adds file type icons to Vim plugins Plug 'ryanoasis/vim-devicons' " The NERDTree is a file system explorer for the Vim editor Plug 'preservim/nerdtree' " Distraction-free writing in Vim Plug 'junegunn/goyo.vim' " Rethinking Vim as a tool for writing Plug 'reedes/vim-pencil' " Lean & mean status/tabline for vim that's light as air Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline-themes' "Installs themes for airline call plug#end() """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " PLUGIN SETTINGS """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """"""""""""""""""""" "JULIA FORMATTER """"""""""""""""""""" let g:JuliaFormatter_options = { \ 'indent' : 4, \ 'margin' : 92, \ 'always_for_in' : v:false, \ 'whitespace_typedefs' : v:false, \ 'whitespace_ops_in_indices' : v:true, \ } """"""""""""""""" "MARKDOWN-PREVIEW """"""""""""""""" " ${name} will be replace with the file name let g:mkdp_page_title = '「${name}」' let g:mkdp_preview_options = { \ 'mkit': {}, \ 'katex': {}, \ 'uml': {}, \ 'maid': {}, \ 'disable_sync_scroll': 0, \ 'sync_scroll_type': 'middle', \ 'hide_yaml_meta': 1, \ 'sequence_diagrams': {}, \ 'flowchart_diagrams': {} \ } """"""""""""""""""""" " AIRLINE """"""""""""""""""""" " Enabling Powerline symbols let g:airline_powerline_fonts = 1 " Allows word counting in the following filetypes let g:airline#extensions#wordcount#filetypes = '\vasciidoc|help|mail|markdown|pandoc|org|rst|tex|text' " Shows all buffers when only one tab open let g:airline#extensions#tabline#enabled = 0 " Handles file path displays let g:airline#extensions#tabline#formatter = 'unique_tail_improved' " Sets theme for airline let g:airline_theme='gruvbox' """""""""""""""""""""""""""""" " VIM-JSBEAUTIFY """""""""""""""""""""""""""""" ".vimrc map <c-f> :call JsBeautify()<cr> " or autocmd FileType javascript noremap <buffer> <c-f> :call JsBeautify()<cr> " for json autocmd FileType json noremap <buffer> <c-f> :call JsonBeautify()<cr> " for jsx autocmd FileType jsx noremap <buffer> <c-f> :call JsxBeautify()<cr> " for html autocmd FileType html noremap <buffer> <c-f> :call HtmlBeautify()<cr> " for css or scss autocmd FileType css noremap <buffer> <c-f> :call CSSBeautify()<cr> """""""""""""""""""""""""""""" " VIM-EMOJI """""""""""""""""""""""""""""" set completefunc=emoji#complete """""""""""""""""""""""""""""" " VIMPENCIL """""""""""""""""""""""""""""" " Automatically enable Pencil for files augroup pencil autocmd! autocmd FileType py call pencil#init({'wrap' : 'soft'}) autocmd FileType markdown call pencil#init({'wrap' : 'soft'}) autocmd FileType julia call pencil#init({'wrap' : 'soft'}) autocmd FileType tex call pencil#init({'wrap' : 'soft'}) augroup END """""""""""""""""""""""""""""" " GRUVBOX """""""""""""""""""""""""""""" let g:gruvbox_termcolors=16 let g:gruvbox_contrast_dark = 'medium' colorscheme gruvbox set background=dark " Setting dark mode """""""""""""""""""""""""""""" " TABULAR & VIM-MARKDOWN """""""""""""""""""""""""""""" let g:vim_markdown_folding_level = 1 """""""""""""""""""""""""""""" " VIM-PANDOC """""""""""""""""""""""""""""" let g:pandoc#filetypes#handled = ['pandoc', 'markdown'] let g:pandoc#modules#disabled = ['spell'] let g:pandoc#folding#fold_fenced_codeblocks = 1 let g:pandoc#folding#fold_yaml = 1 let g:pandoc#biblio#bibs = ['/home/src/Offline/Zettelkasten/zettel.bib'] let g:pandoc#toc#close_after_navigating = 0 let g:pandoc#toc#position = 'bottom' let g:pandoc#folding#fdc = 0 """""""""""""""""""""""""""""" " VIM-PANDOC-SYNTAX """""""""""""""""""""""""""""" let g:pandoc#syntax#conceal#blacklist = ['strikeout', 'list', 'quotes'] """""""""""""""""""""""""""""" " DEOPLETE """""""""""""""""""""""""""""" " Turns on Deoplete at start-up of Vim let g:deoplete#enable_at_startup = 1 " Chooses backend for bibtex autocompletion " let g:pandoc#completion#bib#mode = 'citeproc' " Disables autocompletion while writing "call deoplete#custom#option('auto_complete', v:false) " Enables omnicompletion of citation keys call deoplete#custom#var('omni', 'input_patterns', { \ 'pandoc': '@' \}) " Enables deoplete for tex files call deoplete#custom#var('omni', 'input_patterns', { \ 'tex': g:vimtex#re#deoplete \}) """""""""""""""""""""""""""""" " FZF-VIM """""""""""""""""""""""""""""" let g:slime_target = "screen" let g:slime_paste_file = "$HOME/.slime_paste" """""""""""""""""""""""""""""" " FZF-VIM """""""""""""""""""""""""""""" let $FZF_DEFAULT_OPTS='--reverse' let g:fzf_layout = { 'window': { 'width': 0.8, 'height': 0.8 } } """""""""""""""""""""""""""""" " VIM-TEX """""""""""""""""""""""""""""" let g:tex_flavor='latexmk' let g:vimtex_view_general_viewer = 'okular' let g:vimtex_view_general_options = '--unique file:@pdf\#src:@line@tex' let g:vimtex_view_general_options_latexmk = '--unique' let g:vimtex_quickfix_mode=0 let g:vimtex_fold_enabled = 1 let g:vimtex_fold_types = { \ 'preamble' : {'enabled' : 1}, \ 'sections' : {'enabled' : 0}, \ 'envs' : { \ 'blacklist' : ['figures'], \ }, \} """""""""""""""""""""""""""""" " VIM-LATEX-LIVE-PREVIEW """""""""""""""""""""""""""""" let g:livepreview_previewer = 'zathura' let g:livepreview_use_biber = 1 """""""""""""""""""""""""""""" " VIM-TABLE-MODE """""""""""""""""""""""""""""" let g:table_mode_corner = "|" let g:table_mode_align_char = ":" function! s:isAtStartOfLine(mapping) let text_before_cursor = getline('.')[0 : col('.')-1] let mapping_pattern = '\V' . escape(a:mapping, '\') let comment_pattern = '\V' . escape(substitute(&l:commentstring, '%s.*$', '', ''), '\') return (text_before_cursor =~? '^' . ('\v(' . comment_pattern . '\v)?') . '\s*\v' . mapping_pattern . '\v$') endfunction inoreabbrev <expr> <bar><bar> \ <SID>isAtStartOfLine('\|\|') ? \ '<c-o>:TableModeEnable<cr><bar><space><bar><left><left>' : '<bar><bar>' inoreabbrev <expr> __ \ <SID>isAtStartOfLine('__') ? \ '<c-o>:silent! TableModeDisable<cr>' : '__' """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " VIM FUNCTIONS """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " code/string searching tool for multifile exploration let g:ackprg = 'ag --nogroup --nocolor --column' let g:fzf_action = { \ 'ctrl-t': 'tab split', \ 'ctrl-x': 'split', \ 'ctrl-v': 'vsplit', \ 'ctrl-o': ':r !echo', \ } augroup vimrc_todo au! au Syntax * syn match MyTodo /\v<(FIXME|NOTE|TODO|OPTIMIZE|DESC):/ \ containedin=.*Comment,vimCommentTitle augroup END function! TwiddleCase(str) if a:str ==# toupper(a:str) let result = tolower(a:str) elseif a:str ==# tolower(a:str) let result = substitute(a:str,'\(\<\w\+\>\)', '\u\1', 'g') else let result = toupper(a:str) endif return result endfunction """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " KEY REMAPS """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " Enables Tab completion for selecting from Deoplete omnicompletion inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>" " Enables ripgrep for file completion via fzf inoremap <expr> <c-x><c-f> fzf#vim#complete#path('rg --files') " Maps leader to the spacebar map <Space> <Leader> " Maps easymotion jumps for lines map <leader><space>l <Plug>(easymotion-bd-jk) nmap <leader><space>l <Plug>(easymotion-overwin-line) " Maps easymotion jumps for words map <leader><Space>w <Plug>(easymotion-bd-w) nmap <leader><Space>w <Plug>(easymotion-overwin-w) " Automatic formatting for Julia files nnoremap <buffer> <c-f> :call JuliaFormatter#Format(0)<cr> " Maps quit noremap <leader>q :q<cr> " Maps write nnoremap <leader>w :w<cr> " Maps ripgrep file searching function nnoremap <C-g> :Rg<Cr> " Maps display of current buffers nnoremap <C-b> :Buffers<Cr> " Deselects currently highlighted searches nnoremap <Leader><BS> :noh<cr> " Activates Twiddle case to switch between cases of selected text vnoremap ~ y:call setreg('', TwiddleCase(@"), getregtype(''))<CR>gv""Pgv