From 0f19ce80f00ba983d9776b0258a4c6bf36f83a6d Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Sat, 23 Jan 2021 22:18:02 -0500 Subject: init.vim rewrite --- .config/nvim/init.vim | 380 ++++++++++++++++++++------------------------------ .config/vifm/vifmrc | 1 + .xinitrc | 5 +- 3 files changed, 152 insertions(+), 234 deletions(-) diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index cdcf497..3b9b644 100755 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -7,59 +7,42 @@ " " +" Vim Plug {{{ -" #---Plug Installer---# " -if empty(glob('~/.vim/autoload/plug.vim')) - silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs - \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim +" Autoinstall +let autoload_plug_path = stdpath('data') . '/site/autoload/plug.vim' +if !filereadable(autoload_plug_path) + silent execute '!curl -fLo ' . autoload_plug_path . ' --create-dirs + \ "https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim"' autocmd VimEnter * PlugInstall --sync | source $MYVIMRC endif +unlet autoload_plug_path -" #---Vim Plugins---# " +" Plugins call plug#begin() -" Deoplete -Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } -" Go Deoplete sources -Plug 'stamblerre/gocode', { 'rtp': 'vim', 'do': '~/.vim/plugged/gocode/vim/symlink.sh' } -Plug 'deoplete-plugins/deoplete-go', { 'do': 'make'} +" Bracket Completion +Plug 'jiangmiao/auto-pairs' " Automated vim bulletpoints Plug 'dkarter/bullets.vim' -" Todoist with vim? -Plug 'ChausseBenjamin/todoist.nvim', { 'do': ':TodoistInstall' } -" LaTeX deoplete -Plug 'hisaknown/deoplete-latex' -" Turning vim into an R IDE -Plug 'jalvesaq/Nvim-R' -" Google cal inside vim -Plug 'itchyny/calendar.vim' -" Vim Sensible -Plug 'tpope/vim-sensible' -" Using vim to compile arduino code -Plug 'stevearc/vim-arduino' -" Vim org tables -Plug 'dhruvasagar/vim-table-mode' " Vim css hex highlight Plug 'chrisbra/Colorizer' -" Bracket Completion -Plug 'jiangmiao/auto-pairs' -" csv filetype for vim -Plug 'chrisbra/csv.vim' -" Go developement -Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' } -" sxhkd syntax -Plug 'kovetskiy/sxhkd-vim' -" Vim-Bling Search -Plug 'ivyl/vim-bling' -" Vim Hard Mode -Plug 'wikitopian/hardmode' -" Make vim behave like Jupyter -Plug 'metakirby5/codi.vim' +" Deoplete +Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } +" LaTeX deoplete +Plug 'hisaknown/deoplete-latex' +" Todoist with vim? +Plug 'romgrk/todoist.nvim', { 'do': ':TodoistInstall' } " markdown preview vim -Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }} -" Emmet expansion for html -Plug 'mattn/emmet-vim' +Plug 'iamcco/markdown-preview.nvim' +" Nice markdown formatting +Plug 'godlygeek/tabular', { 'for': 'markdown' } +Plug 'plasticboy/vim-markdown', { 'for': 'markdown' } +" Generate buffers +Plug 'AndrewRadev/bufferize.vim' +" Emmet +Plug 'mattn/emmet-vim', { 'for': [ 'markdown', 'html' ] } " html preview -Plug 'turbio/bracey.vim' +Plug 'turbio/bracey.vim', { 'for': [ 'html', 'stylesheet', 'javascript'] } " My colorscheme Plug 'ChausseBenjamin/friffle-vim' " Elly colorscheme @@ -73,224 +56,159 @@ Plug 'tpope/vim-surround' " Vim repeat for dot command on vim surround Plug 'tpope/vim-repeat' " Vimtex -Plug 'lervag/vimtex' -" lightline -Plug 'itchyny/lightline.vim' +Plug 'lervag/vimtex', { 'for': ['tex', 'aux', 'bib'] } " Commentary Plug 'tpope/vim-commentary' -" Vim markdown -Plug 'godlygeek/tabular' -" Ctrl-P fuzzy file finder -Plug 'ctrlpvim/ctrlp.vim' " Vim snippet manager/tool Plug 'sirver/UltiSnips' " Vim snippet library Plug 'honza/vim-snippets' -" Async shell commands -Plug 'skywind3000/asyncrun.vim' " French grammar checker Plug 'dpelle/vim-Grammalecte' " All purpose grammar checker Plug 'dpelle/vim-LanguageTool' +" sxhkd syntax +Plug 'kovetskiy/sxhkd-vim', { 'for': 'sxhkdrc' } +" Google cal inside vim +Plug 'itchyny/calendar.vim' +" Turning vim into an R IDE +Plug 'jalvesaq/Nvim-R', { 'for': [ 'R', 'Rnoweb', 'tex', 'aux', 'bib' ] } +" csv filetype for vim +Plug 'chrisbra/csv.vim' +" Quick highlighting +Plug 'qxxxb/vim-searchhi' +" Split resizing made easy +Plug 'simeji/winresizer' call plug#end() +" }}} -" #---Basics/Recomended---# " +" Sensible defaults {{{ +" Aesthetics & basics syntax on -filetype plugin on -set termguicolors -set lazyredraw -set t_Co=256 -set encoding=utf-8 +colo friffle " The best colorscheme +set tgc " Use my terminal's colors +set lz " Lazy redraw -> Quicker vim +set t_Co=256 " 256 colors +set enc=utf-8 +set wmnu " Display all matching file when we tab complete +set nosc " Don't show the previously typed command +set nu rnu " Ablolute Relative number hybrid +set ru " View column count +set ls=0 " Disable the statusline +set sb spr " Sensible split directions +set ts=2 " A sensible tab width +set shiftwidth=2 " A sensible tab width +set et " Expanding tabs +set foldmethod=marker " vim folding + +" Completion set path+=** " Provides tab-completion for all file related tasks -set wildmenu " Display all matching file when we tab complete -runtime macros/matchit.vim +set wim=longest,list,full " set completion mode +set runtimepath+=~/.config/nvim/plugged/deoplete.nvim +let g:deoplete#enable_at_startup = 1 + +" Wrapping +set wrap +set lbr + " Spelling set complete+=kspell " Better Spell Checking -set spelllang=fr -nnoremap ;h zg -nnoremap ;j ]s -nnoremap ;k [s -nnoremap ;l z=1 -nnoremap ; z=1 -" Enable autocompletion: - set wildmode=longest,list,full - set runtimepath+=~/.config/nvim/plugged/deoplete.nvim - let g:deoplete#enable_at_startup = 1 -" Splits open at the bottom and right, which is non-retarded, unlike vim defaults. -set splitbelow splitright -set rtp+=/usr/local/opt/fzf " Fuzzy File Finder -set t_vi= " Autohide the cursor -" Automatic wordwrap without creating newlines! -set wrap -set linebreak +set spl=fr " French prose -" #---Plugin Preferences---# " -" Emmet Expansion -let g:user_emmet_leader_key=',' -" MarkdownPreview -let g:mkdp_browser = 'firefox' -" Bracey -let g:bracey_browser_command = "firefox" -" Grammalecte path -let g:grammalecte_cli_py = "/usr/bin/grammalecte-cli" -" Ultisnips - " Trigger configuration. Do not use if you use https://github.com/Valloric/YouCompleteMe. - let g:UltiSnipsExpandTrigger="" - let g:UltiSnipsJumpForwardTrigger=";" - let g:UltiSnipsJumpBackwardTrigger=";n" - " If you want :UltiSnipsEdit to split your window. - let g:UltiSnipsEditSplit="vertical" - " Snippet directory - let g:UltiSnipsSnippetDirectories=[$HOME.'/.config/nvim/UltiSnips'] -" Hexokinase -let g:Hexokinase_highlighters = ['virtual'] -" Vimtex pdf viewer -let g:vimtex_view_general_viewer = 'open' -let g:vimtex_view_general_options = '-a zathura' -let g:tex_flavor = 'latex' -" Vimtex TOC -nnoremap :VimtexTocToggle -" Calendar setup -let g:calendar_google_calendar = 1 -let g:calendar_frame = 'default' -source ~/.cache/calendar.vim/credentials.vim +" Tag Editing +inoremap t <++> +inoremap :; /<++>"_c4l + +" Space is my leader +nmap -" #---Document Compilation/Visualisation---# " -" Compile document, be it groff/LaTeX/markdown/etc. -nnoremap c :w! \| AsyncRun compiler % -autocmd InsertLeave,TextChanged *.gd,*.ms,*.mom :w! | :execute 'silent AsyncRun compiler %' -" autocmd InsertLeave *.rmd,*.rnw,*.tex :w! | :execute 'silent AsyncRun compiler %; todotable % TODO FIXME CHANGED XXX IDEA HACK NOTE REVIEW NB BUG QUESTION COMBAK' -nnoremap x :w! \| AsyncRun todotable % TODO FIXME CHANGED XXX IDEA HACK NOTE REVIEW NB BUG QUESTION COMBAK TEMP -" Have dwmblocks automatically recompile and run when you edit this file in -autocmd BufWritePost ~/Compilation/dwmblocks/config.h !cd ~/Compilation/dwmblocks/; make && sudo make install && { killall -q dwmblocks;setsid dwmblocks & } -autocmd BufWritePost ~/.Xresources !xrdb -load % -" Open corresponding .pdf/.html or preview - nnoremap p :! opout % -" Open corresponding .pdf/.html or preview - nnoremap o :! tdout % -" Spaces are superior to tabs -set tabstop=2 -set shiftwidth=2 -set expandtab -" 80 col warning -" highlight ColorColumn ctermbg=magenta -" call matchadd('ColorColumn', '\%81v', 100) +" Logical yanks +nnoremap Y y$ -" #---Custom Keymaps---# " -" Vim split resize - map :resize+3 - map :resize-3 - map :verticalresize-3 - map :verticalresize+3 - map :split - map :vsplit -" Shortcutting split navigation, saving a keypress: - nnoremap h - nnoremap j - nnoremap k - nnoremap l " Easily escape terminal mode tnoremap -" Space is my leader -nmap -" Fastest save in the west -nnoremap w :w -" #---Visual Enhancements---# " -colorscheme friffle -" colorscheme friffle -" Remove latex underscore errors -let g:tex_no_error=1 -" let g:airline_powerline_fonts = 1 -" Lightline config -let g:lightline = { - \ 'colorscheme': 'friffle', - \ 'active': { - \ 'left': [ [ 'mode', 'paste' ], - \ [ 'gitbranch', 'readonly', 'filename', 'modified' ] ] - \ }, - \ 'component_function': { - \ 'gitbranch': 'FugitiveHead' - \ }, - \ } -set noshowmode +" Split motion +nnoremap h +nnoremap j +nnoremap k +nnoremap l -" #---Ease Of Use---# " -" Normal/relative number toggle -set number relativenumber -augroup numbertoggle - autocmd! - autocmd BufEnter,FocusGained,InsertLeave * set relativenumber - autocmd BufLeave,FocusLost,InsertEnter * set norelativenumber -augroup END -" Remove all trailing spaces upon write {{{ +" Saving and quitting buffers +nnoremap ZF ZQ +nnoremap s :update + +" Remove trailing white spaces autocmd BufWritePre * %s/\s\+$//e -" Soft Tabs -filetype plugin indent on -" Nvim-R send line -" nmap l -" Nvim-R match colorscheme -let rout_follow_colorscheme = 0 -" Nvim-R folding - let r_syntax_folding = 1 - set foldnestmax=1 - set foldmethod=marker -" Arduino settings -let g:arduino_cmd = '/usr/bin/arduino' -let g:arduino_dir = '/usr/share/arduino' -" Vim fugitive settings -nmap gh :diffget //3 -nmap gu :diffget //2 -nmap gs :G -nmap gc :Gcommit -" Todoist icons - let todoist = { - \ 'icons': { - \ 'unchecked': ' ', - \ 'checked': ' ', - \ 'loading': ' ', - \ 'error': ' ', - \ }, - \} +" }}} + +" Plugin related {{{ +" Todoist.nvim +let todoist = { +\ 'icons': { +\ 'unchecked': ' ', +\ 'checked': ' ', +\ 'loading': ' ', +\ 'error': ' ', +\ }, +\} +" Markdown syntax +let g:vim_markdown_strikethrough = 1 +let g:vim_markdown_folding_disabled = 1 +set conceallevel=2 -" #---Universal Macros---# " -" Create and navigate Markers -" inoremap ;m <++> -inoremap ;; /<++>"_c4l -inoremap << « -inoremap >> » -" Spelling quickfixes -function! QuickFixSpell(dir) - " -1 Means previous spelling err - if a:dir == -1 - normal! ms[s1z=`s - " 1 Means next spelling err - elseif a:dir== 1 - :normal! ms]s1z=`s - endif - execute 'delmark s' -endfunction +" Bufferize +let g:bufferize_command = 'vnew' -nnoremap -nnoremap >s :call QuickFixSpell(1) +" Bracey +let g:bracey_browser_command = "firefox" + +" Grammalecte +let g:grammalecte_cli_py = "/usr/bin/grammalecte-cli" + +" Calendar.vim +let g:calendar_google_calendar = 1 +let g:calendar_frame = 'default' +source ~/.cache/calendar.vim/credentials.vim -" Markdown Heading underline -function! UnderlineHeading(level) - if a:level == 1 - execute "normal! yypVr=k$" - elseif a:level == 2 - execute "normal! yypVr-k$" - else - execute "normal! I### \e$" - endif -endfunction +" Emmet.vim +let g:user_emmet_leader_key=',' + +" Vimtex +" pdf viewer + let g:vimtex_view_general_viewer = 'open' + let g:vimtex_view_general_options = '-a zathura' + let g:tex_flavor = 'latex' +" TOC + nnoremap :VimtexTocToggle +" Underscore errors + let g:tex_no_error=1 + +" Nvim-R +" Folding + let r_syntax_folding = 1 + set foldnestmax=1 + set foldmethod=marker +" Follow colorscheme + let rout_follow_colorscheme = 0 + +" Arduino +let g:arduino_cmd = '/usr/bin/arduino' +let g:arduino_dir = '/usr/share/arduino' + +" Ultisnips +let g:UltiSnipsExpandTrigger="" +let g:UltiSnipsJumpForwardTrigger=";" +let g:UltiSnipsJumpBackwardTrigger=";n" + " If you want :UltiSnipsEdit to split your window. +let g:UltiSnipsEditSplit="vertical" +" Snippet directory +let g:UltiSnipsSnippetDirectories=[$HOME.'/.config/nvim/UltiSnips'] -nnoremap u1 :call UnderlineHeading(1) -nnoremap u2 :call UnderlineHeading(2) -nnoremap u3 :call UnderlineHeading(3) +" }}} -" #---Filetype Specific Settings---# " -set runtimepath^=~/.vim/bundle/todoist.nvim +" See immediate results when edditing this file +autocmd BufWritePost ~/.config/nvim/init.vim :source % diff --git a/.config/vifm/vifmrc b/.config/vifm/vifmrc index 16ea457..e419ef4 100644 --- a/.config/vifm/vifmrc +++ b/.config/vifm/vifmrc @@ -278,6 +278,7 @@ nnoremap x :!/home/siddharth/bin/utils/extract %f & " Share Files with dropbox nnoremap s :!dbshare %d/%b & +nnoremap N :!dropbox-cli exclude add %d/%b & " Make a new directory nnoremap mkd :mkdir diff --git a/.xinitrc b/.xinitrc index 69f69ba..b65c7b9 100644 --- a/.xinitrc +++ b/.xinitrc @@ -14,9 +14,8 @@ xrdb -load $HOME/.Xresources flashfocus -n 30 -o 0.75 -v ERROR & dwmblocks & newsup & -while true; -do - exec dwm +while true; do + dwm >/dev/null done # exec icewm # vim:filetype=sh -- cgit v1.2.3