From 3bcb4a15dd02b0dd36ba7212fcca44efffadb72b Mon Sep 17 00:00:00 2001 From: lelgenio Date: Fri, 22 Nov 2019 22:17:36 -0300 Subject: [PATCH] nivm: fold --- neomutt/.config/neomutt/password.gpg | Bin 373 -> 0 bytes nvim/.config/nvim/init.vim | 56 ++++++++++++--------------- 2 files changed, 25 insertions(+), 31 deletions(-) delete mode 100644 neomutt/.config/neomutt/password.gpg diff --git a/neomutt/.config/neomutt/password.gpg b/neomutt/.config/neomutt/password.gpg deleted file mode 100644 index 491010c73ea6b2a9057e38ad996bdb278c7577f5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 373 zcmV-*0gC>G0Sp5(VpWk9`jWB%2mrfYS8VX%x|^}JTV=&Q9GHEVf7^mO^8klO9e8|> z_69i;bAm(+HwP*_nax+IL%k z7RZ1XF5pA83P6+xtPgB34@O>Ub;=QnM1vXL`!G82X!VEo8Jg)E%_^MvOivb8tbJlS zAsJM`R&bfTdi`WK=2Gl1v40-HI4avRfUdRSfmEfC00jc(67Gyysv)hyVe)+?8FV3> zb~#p4s$yXUPzw3kNtAt6@W>sCE TJgqCn=;^<2(rE+;vM@<-#Uiqm diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim index d8badee..476701c 100644 --- a/nvim/.config/nvim/init.vim +++ b/nvim/.config/nvim/init.vim @@ -1,7 +1,9 @@ +" LEL " -" Plugins +" NVIM +" +" Plugins{{{ " - " Install plug if it isn't already if empty(glob('~/.config/nvim/autoload/plug.vim')) silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs @@ -76,15 +78,13 @@ Plug 'xuhdev/vim-latex-live-preview', { 'for': 'tex' } Plug 'vim-latex/vim-latex', { 'for': 'tex' } call plug#end() - -" -" Syntax options +"}}} +" Syntax options{{{ " " Enable syntax and set color scheme syntax on - set tabstop=4 set shiftwidth=4 set expandtab @@ -104,10 +104,9 @@ call plug#end() set mouse =a set clipboard +=unnamedplus set title +"}}} +" Gay colors{{{ - " - " Gay colors - " if (empty($TMUX)) if (has('nvim')) let $NVIM_TUI_ENABLE_TRUE_COLOR = 1 @@ -119,14 +118,17 @@ call plug#end() colorscheme minimalist - set background=dark + " set background=dark + "background color is transparent highlight Normal guibg=None highlight EndOfBuffer guibg=None highlight SpecialKey guibg=None guifg=#cc5757 + "Line numers highlight LineNr term=bold ctermfg=9 guifg=#cc5757 guibg=None - "Make whitespace is dark + + "Make whitespace dark highlight NonText ctermfg=black guifg=#303030 highlight SpecialKey ctermfg=black guifg=#303030 @@ -134,10 +136,8 @@ call plug#end() set cursorline highlight CursorLine term=bold cterm=bold gui=Bold guibg=#303030 highlight CursorLineNr term=bold cterm=bold gui=Bold guibg=None guifg=white - - -" -" Keys +"}}} +" Keys{{{ " " Easy comment toggle @@ -164,9 +164,8 @@ call plug#end() nnoremap gr :call LanguageClient#textDocument_references() nnoremap gs :call LanguageClient#textDocument_documentSymbol() nnoremap gR :call LanguageClient#textDocument_rename() - -" -" Lanugage Server +"}}} +" Lanugage Server{{{ " @@ -196,8 +195,7 @@ call plug#end() call deoplete#custom#source('LanguageClient', \ 'min_pattern_length', \ 2) - -"python env +"python env{{{ " MUST NOT BE INDENTED! py3 << EOF import os @@ -207,19 +205,13 @@ if 'VIRTUAL_ENV' in os.environ: activate_this = os.path.join(project_base_dir, 'bin/activate_this.py') execfile(activate_this, dict(__file__=activate_this)) EOF - - - -" -" Latex -" - +"}}} +" Latex{{{ let g:livepreview_previewer = 'zathura' autocmd FileType tex LLPStartPreview - -" -"Hide statusbar -" +"}}} +"}}} +"Hide statusbar{{{ let s:hidden_all = 0 function! ToggleHiddenAll() if s:hidden_all == 0 @@ -239,3 +231,5 @@ EOF nnoremap :call ToggleHiddenAll() call ToggleHiddenAll() +"}}} +" vim:foldmethod=marker