vault backup: 2025-03-23 13:16:06
This commit is contained in:
parent
115e1cfe21
commit
7d2dd5166d
@ -3,7 +3,7 @@ let s:so_save = &g:so | let s:siso_save = &g:siso | setg so=0 siso=0 | setl so=-
|
|||||||
let v:this_session=expand("<sfile>:p")
|
let v:this_session=expand("<sfile>:p")
|
||||||
silent only
|
silent only
|
||||||
silent tabonly
|
silent tabonly
|
||||||
cd ~/Documents/Dane\'s\ Vault/.sessions
|
cd ~/Documents/Dane\'s\ Vault/3-99\ Research/Rust
|
||||||
if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''
|
if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''
|
||||||
let s:wipebuf = bufnr('%')
|
let s:wipebuf = bufnr('%')
|
||||||
endif
|
endif
|
||||||
@ -13,11 +13,13 @@ if &shortmess =~ 'A'
|
|||||||
else
|
else
|
||||||
set shortmess=aoO
|
set shortmess=aoO
|
||||||
endif
|
endif
|
||||||
badd +0 nvim_config.vim
|
badd +1 term://~/Documents/Dane\'s\ Vault/3-99\ Research/Rust//184966:/bin/bash
|
||||||
|
badd +1 Chapter\ 2\ -\ Guessing\ Game.md
|
||||||
argglobal
|
argglobal
|
||||||
%argdel
|
%argdel
|
||||||
edit nvim_config.vim
|
edit Chapter\ 2\ -\ Guessing\ Game.md
|
||||||
argglobal
|
argglobal
|
||||||
|
balt term://~/Documents/Dane\'s\ Vault/3-99\ Research/Rust//184966:/bin/bash
|
||||||
setlocal fdm=manual
|
setlocal fdm=manual
|
||||||
setlocal fde=0
|
setlocal fde=0
|
||||||
setlocal fmr={{{,}}}
|
setlocal fmr={{{,}}}
|
||||||
@ -28,11 +30,11 @@ setlocal fdn=20
|
|||||||
setlocal fen
|
setlocal fen
|
||||||
silent! normal! zE
|
silent! normal! zE
|
||||||
let &fdl = &fdl
|
let &fdl = &fdl
|
||||||
let s:l = 27 - ((26 * winheight(0) + 32) / 65)
|
let s:l = 1 - ((0 * winheight(0) + 32) / 64)
|
||||||
if s:l < 1 | let s:l = 1 | endif
|
if s:l < 1 | let s:l = 1 | endif
|
||||||
keepjumps exe s:l
|
keepjumps exe s:l
|
||||||
normal! zt
|
normal! zt
|
||||||
keepjumps 27
|
keepjumps 1
|
||||||
normal! 0
|
normal! 0
|
||||||
tabnext 1
|
tabnext 1
|
||||||
if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal'
|
if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal'
|
||||||
@ -15,8 +15,8 @@ else
|
|||||||
endif
|
endif
|
||||||
badd +16 ~/Documents/Dane\'s\ Vault/3-99\ Research/VIM/Folding.md
|
badd +16 ~/Documents/Dane\'s\ Vault/3-99\ Research/VIM/Folding.md
|
||||||
badd +1 custom/plugins.lua
|
badd +1 custom/plugins.lua
|
||||||
badd +1 ~/.config/nvim/lua/custom/configs/lspconfig.lua
|
badd +82 ~/.config/nvim/lua/custom/configs/lspconfig.lua
|
||||||
badd +0 NvimTree_1
|
badd +1 NvimTree_1
|
||||||
argglobal
|
argglobal
|
||||||
%argdel
|
%argdel
|
||||||
edit ~/.config/nvim/lua/custom/configs/lspconfig.lua
|
edit ~/.config/nvim/lua/custom/configs/lspconfig.lua
|
||||||
@ -32,11 +32,11 @@ setlocal fdn=20
|
|||||||
setlocal fen
|
setlocal fen
|
||||||
silent! normal! zE
|
silent! normal! zE
|
||||||
let &fdl = &fdl
|
let &fdl = &fdl
|
||||||
let s:l = 84 - ((50 * winheight(0) + 32) / 64)
|
let s:l = 82 - ((48 * winheight(0) + 32) / 64)
|
||||||
if s:l < 1 | let s:l = 1 | endif
|
if s:l < 1 | let s:l = 1 | endif
|
||||||
keepjumps exe s:l
|
keepjumps exe s:l
|
||||||
normal! zt
|
normal! zt
|
||||||
keepjumps 84
|
keepjumps 82
|
||||||
normal! 0
|
normal! 0
|
||||||
tabnext 1
|
tabnext 1
|
||||||
if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal'
|
if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal'
|
||||||
|
|||||||
0
3-99 Research/Rust/Chapter 2 - Guessing Game.md
Normal file
0
3-99 Research/Rust/Chapter 2 - Guessing Game.md
Normal file
6
3-99 Research/Rust/guessing_game/Cargo.toml
Normal file
6
3-99 Research/Rust/guessing_game/Cargo.toml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
[package]
|
||||||
|
name = "guessing_game"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
3
3-99 Research/Rust/guessing_game/src/main.rs
Normal file
3
3-99 Research/Rust/guessing_game/src/main.rs
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
fn main() {
|
||||||
|
println!("Hello, world!");
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user