vim fixes
This commit is contained in:
@@ -100,3 +100,5 @@ color2hex(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
set completion-ignore-case On
|
set completion-ignore-case On
|
||||||
|
|
||||||
|
export OFLAGS="--ozone-platform-hint=auto"
|
||||||
|
|||||||
2858
dotfiles/.vim/autoload/plug.vim
Normal file
2858
dotfiles/.vim/autoload/plug.vim
Normal file
File diff suppressed because it is too large
Load Diff
1
dotfiles/.vim/plugged/vimwiki
Submodule
1
dotfiles/.vim/plugged/vimwiki
Submodule
Submodule dotfiles/.vim/plugged/vimwiki added at 69318e74c8
@@ -254,7 +254,8 @@ function! StatuslineGit()
|
|||||||
return strlen(l:branchname) > 0?' '.l:branchname.' ':''
|
return strlen(l:branchname) > 0?' '.l:branchname.' ':''
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
set statusline=\ %{HasPaste()}%F%m%r%h\ %w\ \ Cursor:\ %l/%c\ \ \ Lines:\ %L%=%{StatuslineGit()}
|
" StatusLine is currently broken. Using the vim default.
|
||||||
|
" set statusline=\ %{HasPaste()}%F%m%r%h\ %w\ \ Cursor:\ %l/%c\ \ \ Lines:\ %L%=%{StatuslineGit()}
|
||||||
|
|
||||||
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
@@ -371,3 +372,15 @@ function! VisualSelection(direction, extra_filter) range
|
|||||||
let @/ = l:pattern
|
let @/ = l:pattern
|
||||||
let @" = l:saved_reg
|
let @" = l:saved_reg
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
set nocompatible
|
||||||
|
" VIM-PLUG PLUGINS
|
||||||
|
call plug#begin()
|
||||||
|
" The default plugin directory will be as follows:
|
||||||
|
" - Vim (Linux/macOS): '~/.vim/plugged'
|
||||||
|
" - Vim (Windows): '~/vimfiles/plugged'
|
||||||
|
" - Neovim (Linux/macOS/Windows): stdpath('data') . '/plugged'
|
||||||
|
|
||||||
|
Plug 'vimwiki/vimwiki'
|
||||||
|
|
||||||
|
call plug#end()
|
||||||
|
|||||||
Reference in New Issue
Block a user