Vim video update
This commit is contained in:
parent
58e761d7dd
commit
0f0077c33f
2 changed files with 34 additions and 2 deletions
|
@ -12,23 +12,50 @@ set smarttab
|
||||||
set autoindent
|
set autoindent
|
||||||
set smartindent
|
set smartindent
|
||||||
set incsearch
|
set incsearch
|
||||||
|
set nocompatible
|
||||||
set number
|
set number
|
||||||
|
set showcmd
|
||||||
set showmatch
|
set showmatch
|
||||||
set title
|
set title
|
||||||
set wildignore=*.docx,*.jpg,*.png,*.gif,*.pdf,*.pyc,*.exe,*.flv,*.img,*.xlsx
|
set wildignore=*.docx,*.jpg,*.png,*.gif,*.pdf,*.pyc,*.exe,*.flv,*.img,*.xlsx
|
||||||
syntax on
|
syntax enable
|
||||||
|
|
||||||
" PLUGINS --------------------------------------------------------------- {{{
|
" PLUGINS --------------------------------------------------------------- {{{
|
||||||
|
|
||||||
call plug#begin('~/.vim/plugged')
|
call plug#begin('~/.vim/plugged')
|
||||||
|
|
||||||
Plug 'dense-analysis/ale'
|
Plug 'dense-analysis/ale'
|
||||||
|
Plug 'https://github.com/vifm/vifm.vim.git'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" }}}
|
" }}}
|
||||||
|
|
||||||
if has("autocmd")
|
if has("autocmd")
|
||||||
|
|
||||||
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
" TALK ------------------------------------------------------------------ {{{
|
||||||
|
" https://youtu.be/XA2WjJbmmoM ----------------------------------------------
|
||||||
|
|
||||||
|
" Finding files using :find <name>
|
||||||
|
set path+=**
|
||||||
|
" Also use :b to select files in buffer
|
||||||
|
|
||||||
|
" Show suggestions on another line instead of inplace
|
||||||
|
set wildmenu
|
||||||
|
|
||||||
|
" Tags
|
||||||
|
" pacman -S ctags
|
||||||
|
command! MakeTags !ctags -R . &
|
||||||
|
" Move to defintion using ^]
|
||||||
|
" Move to ambigious using g^]
|
||||||
|
" Move back using ^t
|
||||||
|
|
||||||
|
" Autocomplete
|
||||||
|
" Also see https://vimhelp.org/options.txt.html#%27complete%27
|
||||||
|
" ^n next
|
||||||
|
" ^p previous
|
||||||
|
" ^x^f filename completion
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,11 @@ output * {
|
||||||
bg "~/Pictures/wallpapers/bg.*" fill
|
bg "~/Pictures/wallpapers/bg.*" fill
|
||||||
}
|
}
|
||||||
|
|
||||||
|
output 'Dell Inc. DELL P2214H 29C2937M4YTL' {
|
||||||
|
# Vertical monitor
|
||||||
|
transform 270
|
||||||
|
}
|
||||||
|
|
||||||
# Hide the cursor when typing
|
# Hide the cursor when typing
|
||||||
seat seat0 {
|
seat seat0 {
|
||||||
hide_cursor when-typing enable
|
hide_cursor when-typing enable
|
||||||
|
|
Loading…
Reference in a new issue