new nvim cfg
This commit is contained in:
parent
0e500b7d8f
commit
1c8f70a3a6
7 changed files with 42 additions and 95 deletions
49
Session.vim
49
Session.vim
|
@ -14,19 +14,19 @@ else
|
|||
set shortmess=aoO
|
||||
endif
|
||||
badd +45 lua/hsta/plugins/mini.lua
|
||||
badd +34 lua/hsta/config.lua
|
||||
badd +30 lua/hsta/config.lua
|
||||
badd +1 lua/hsta/plugins/keybinds.lua
|
||||
badd +50 lua/hsta/plugins/lsp.lua
|
||||
badd +16 lua/hsta/plugins/colors.lua
|
||||
badd +33 lua/hsta/plugins/lsp.lua
|
||||
badd +10 lua/hsta/plugins/colors.lua
|
||||
badd +4 lua/hsta/plugins/discord.lua
|
||||
argglobal
|
||||
%argdel
|
||||
edit lua/hsta/plugins/lsp.lua
|
||||
edit lua/hsta/plugins/colors.lua
|
||||
argglobal
|
||||
balt lua/hsta/plugins/colors.lua
|
||||
balt lua/hsta/config.lua
|
||||
setlocal keymap=
|
||||
setlocal noarabic
|
||||
setlocal autoindent
|
||||
setlocal backupcopy=
|
||||
setlocal nobinary
|
||||
setlocal nobreakindent
|
||||
setlocal breakindentopt=
|
||||
|
@ -43,6 +43,7 @@ setlocal comments=:---,:--
|
|||
setlocal commentstring=--\ %s
|
||||
setlocal complete=.,w,b,u,t
|
||||
setlocal completefunc=
|
||||
setlocal completeslash=
|
||||
setlocal concealcursor=
|
||||
setlocal conceallevel=0
|
||||
setlocal nocopyindent
|
||||
|
@ -51,19 +52,16 @@ setlocal nocursorcolumn
|
|||
setlocal cursorline
|
||||
setlocal cursorlineopt=both
|
||||
setlocal define=\\<function\\|\\<local\\%(\\s\\+function\\)\\=
|
||||
setlocal dictionary=
|
||||
setlocal nodiff
|
||||
setlocal equalprg=
|
||||
setlocal errorformat=
|
||||
setlocal eventignorewin=
|
||||
setlocal expandtab
|
||||
if &filetype != 'lua'
|
||||
setlocal filetype=lua
|
||||
endif
|
||||
setlocal fillchars=
|
||||
setlocal fixendofline
|
||||
setlocal foldcolumn=0
|
||||
setlocal foldenable
|
||||
setlocal foldexpr=0
|
||||
setlocal foldexpr=v:lua.vim.treesitter.foldexpr()
|
||||
setlocal foldignore=#
|
||||
setlocal foldlevel=0
|
||||
setlocal foldmarker={{{,}}}
|
||||
|
@ -74,25 +72,18 @@ setlocal foldtext=foldtext()
|
|||
setlocal formatexpr=v:lua.vim.lsp.formatexpr()
|
||||
setlocal formatlistpat=^\\s*\\d\\+[\\]:.)}\\t\ ]\\s*
|
||||
setlocal formatoptions=jcroql
|
||||
setlocal formatprg=
|
||||
setlocal grepprg=
|
||||
setlocal iminsert=0
|
||||
setlocal imsearch=-1
|
||||
setlocal include=
|
||||
setlocal includeexpr=tr(v:fname,'.','/')
|
||||
setlocal include=\\<\\%(\\%(do\\|load\\)file\\|require\\)\\s*(
|
||||
setlocal includeexpr=v:lua.require'vim._ftplugin.lua'.includeexpr(v:fname)
|
||||
setlocal indentexpr=nvim_treesitter#indent()
|
||||
setlocal indentkeys=0{,0},0),0],:,0#,!^F,o,O,e,0=end,0=until
|
||||
setlocal noinfercase
|
||||
setlocal iskeyword=@,48-57,_,192-255
|
||||
setlocal keywordprg=
|
||||
setlocal nolinebreak
|
||||
setlocal nolisp
|
||||
setlocal lispoptions=
|
||||
setlocal lispwords=
|
||||
setlocal nolist
|
||||
setlocal listchars=
|
||||
setlocal makeencoding=
|
||||
setlocal makeprg=
|
||||
setlocal matchpairs=(:),{:},[:]
|
||||
setlocal modeline
|
||||
setlocal modifiable
|
||||
|
@ -100,7 +91,6 @@ setlocal nrformats=bin,hex
|
|||
setlocal number
|
||||
setlocal numberwidth=4
|
||||
setlocal omnifunc=v:lua.vim.lsp.omnifunc
|
||||
setlocal path=
|
||||
setlocal nopreserveindent
|
||||
setlocal nopreviewwindow
|
||||
setlocal quoteescape=\\
|
||||
|
@ -110,10 +100,7 @@ setlocal norightleft
|
|||
setlocal rightleftcmd=search
|
||||
setlocal scrollback=-1
|
||||
setlocal noscrollbind
|
||||
setlocal scrolloff=-1
|
||||
setlocal shiftwidth=4
|
||||
setlocal showbreak=
|
||||
setlocal sidescrolloff=-1
|
||||
setlocal signcolumn=auto
|
||||
setlocal nosmartindent
|
||||
setlocal nosmoothscroll
|
||||
|
@ -132,18 +119,11 @@ if &syntax != ''
|
|||
setlocal syntax=
|
||||
endif
|
||||
setlocal tabstop=4
|
||||
setlocal tagcase=
|
||||
setlocal tagfunc=v:lua.vim.lsp.tagfunc
|
||||
setlocal tags=
|
||||
setlocal textwidth=0
|
||||
setlocal thesaurus=
|
||||
setlocal thesaurusfunc=
|
||||
setlocal noundofile
|
||||
setlocal undolevels=-123456
|
||||
setlocal varsofttabstop=
|
||||
setlocal vartabstop=
|
||||
setlocal virtualedit=
|
||||
setlocal winbar=
|
||||
setlocal winblend=0
|
||||
setlocal nowinfixbuf
|
||||
setlocal winfixheight
|
||||
|
@ -153,12 +133,12 @@ setlocal nowrap
|
|||
setlocal wrapmargin=0
|
||||
silent! normal! zE
|
||||
let &fdl = &fdl
|
||||
let s:l = 50 - ((12 * winheight(0) + 12) / 24)
|
||||
let s:l = 10 - ((9 * winheight(0) + 12) / 25)
|
||||
if s:l < 1 | let s:l = 1 | endif
|
||||
keepjumps exe s:l
|
||||
normal! zt
|
||||
keepjumps 50
|
||||
normal! 0
|
||||
keepjumps 10
|
||||
normal! 044|
|
||||
tabnext 1
|
||||
if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal'
|
||||
silent exe 'bwipe ' . s:wipebuf
|
||||
|
@ -171,7 +151,6 @@ if filereadable(s:sx)
|
|||
exe "source " . fnameescape(s:sx)
|
||||
endif
|
||||
let &g:so = s:so_save | let &g:siso = s:siso_save
|
||||
nohlsearch
|
||||
doautoall SessionLoadPost
|
||||
unlet SessionLoad
|
||||
" vim: set ft=vim :
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue