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")
|
||||
silent only
|
||||
silent tabonly
|
||||
cd ~/Documents/Dane\'s\ Vault/.sessions
|
||||
cd ~/Documents/Dane\'s\ Vault/3-99\ Research/Rust
|
||||
if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''
|
||||
let s:wipebuf = bufnr('%')
|
||||
endif
|
||||
@ -13,11 +13,13 @@ if &shortmess =~ 'A'
|
||||
else
|
||||
set shortmess=aoO
|
||||
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
|
||||
%argdel
|
||||
edit nvim_config.vim
|
||||
edit Chapter\ 2\ -\ Guessing\ Game.md
|
||||
argglobal
|
||||
balt term://~/Documents/Dane\'s\ Vault/3-99\ Research/Rust//184966:/bin/bash
|
||||
setlocal fdm=manual
|
||||
setlocal fde=0
|
||||
setlocal fmr={{{,}}}
|
||||
@ -28,11 +30,11 @@ setlocal fdn=20
|
||||
setlocal fen
|
||||
silent! normal! zE
|
||||
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
|
||||
keepjumps exe s:l
|
||||
normal! zt
|
||||
keepjumps 27
|
||||
keepjumps 1
|
||||
normal! 0
|
||||
tabnext 1
|
||||
if exists('s:wipebuf') && len(win_findbuf(s:wipebuf)) == 0 && getbufvar(s:wipebuf, '&buftype') isnot# 'terminal'
|
||||
@ -15,8 +15,8 @@ else
|
||||
endif
|
||||
badd +16 ~/Documents/Dane\'s\ Vault/3-99\ Research/VIM/Folding.md
|
||||
badd +1 custom/plugins.lua
|
||||
badd +1 ~/.config/nvim/lua/custom/configs/lspconfig.lua
|
||||
badd +0 NvimTree_1
|
||||
badd +82 ~/.config/nvim/lua/custom/configs/lspconfig.lua
|
||||
badd +1 NvimTree_1
|
||||
argglobal
|
||||
%argdel
|
||||
edit ~/.config/nvim/lua/custom/configs/lspconfig.lua
|
||||
@ -32,11 +32,11 @@ setlocal fdn=20
|
||||
setlocal fen
|
||||
silent! normal! zE
|
||||
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
|
||||
keepjumps exe s:l
|
||||
normal! zt
|
||||
keepjumps 84
|
||||
keepjumps 82
|
||||
normal! 0
|
||||
tabnext 1
|
||||
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