Compare commits
No commits in common. "32747cb297d7d4285f31c73cafeaf79ab2308d82" and "c21e219e51af687ea6fcfa18f800cb05a803dd4d" have entirely different histories.
32747cb297
...
c21e219e51
|
@ -18,7 +18,6 @@ auto
|
||||||
# Python
|
# Python
|
||||||
.mypy_cache
|
.mypy_cache
|
||||||
__pycache__
|
__pycache__
|
||||||
.ipynb_checkpoints
|
|
||||||
# Dev environment with Nix
|
# Dev environment with Nix
|
||||||
.envrc
|
.envrc
|
||||||
.direnv
|
.direnv
|
||||||
|
|
|
@ -21,6 +21,6 @@ profile multihead-HDMI {
|
||||||
}
|
}
|
||||||
|
|
||||||
profile nomad {
|
profile nomad {
|
||||||
output eDP-1 enable
|
output eDP-1 enable mode 1920x1080
|
||||||
exec light -S 70
|
exec light -S 70
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,101 @@
|
||||||
|
snippet sign "Signature"
|
||||||
|
Best regards,
|
||||||
|
|
||||||
|
Amin Kasrou Aouam
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet firma "Spanish Signature"
|
||||||
|
Un saludo,
|
||||||
|
|
||||||
|
Amin Kasrou Aouam
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet meta "YAML metadata for eisvogel"
|
||||||
|
---
|
||||||
|
title: "$1"
|
||||||
|
author: [Amin Kasrou Aouam]
|
||||||
|
date: "`date +%F`"
|
||||||
|
titlepage: true
|
||||||
|
logo: /home/coolneng/Pictures/Logos/UGR.png
|
||||||
|
listings-no-page-break: true
|
||||||
|
toc-own-page: true
|
||||||
|
...
|
||||||
|
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet hand "YAML metadata for tufte-handout"
|
||||||
|
---
|
||||||
|
documentclass: tufte-handout
|
||||||
|
title: $1
|
||||||
|
author: Amin Kasrou Aouam
|
||||||
|
date: `date +%F`
|
||||||
|
fontsize: 12pt
|
||||||
|
...
|
||||||
|
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet ass "YAML metadata for assignment"
|
||||||
|
---
|
||||||
|
title: $1
|
||||||
|
author: Amin Kasrou Aouam
|
||||||
|
date: `date +%F`
|
||||||
|
---
|
||||||
|
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet slides "YAML metadata for the Metropolis template"
|
||||||
|
---
|
||||||
|
title: "$1"
|
||||||
|
author: [Amin Kasrou Aouam]
|
||||||
|
date: "`date +%F`"
|
||||||
|
header-includes:
|
||||||
|
|
||||||
|
- \definecolor{dkgreen}{rgb}{0,0.52,0}
|
||||||
|
- \definecolor{gray}{rgb}{0.5,0.5,0.5}
|
||||||
|
- \definecolor{mauve}{rgb}{0.4,0,0.7}
|
||||||
|
- \definecolor{customBlue}{rgb}{0.1,0.1,0.65}
|
||||||
|
- \definecolor{customOrange}{rgb}{0.88,0.53,0.13}
|
||||||
|
- \lstset{frame=tb}
|
||||||
|
- \lstset{language=c}
|
||||||
|
- \lstset{aboveskip=5mm}
|
||||||
|
- \lstset{belowskip=5mm}
|
||||||
|
- \lstset{showstringspaces=false}
|
||||||
|
- \lstset{columns=flexible}
|
||||||
|
- \lstset{basicstyle={\scriptsize\ttfamily}}
|
||||||
|
- \lstset{numbers=left}
|
||||||
|
- \lstset{numberstyle=\tiny}
|
||||||
|
- \lstset{stepnumber=1}
|
||||||
|
- \lstset{numbersep=8pt}
|
||||||
|
- \lstset{numberstyle=\tiny\color{gray}}
|
||||||
|
- \lstset{keywordstyle=\color{customBlue}}
|
||||||
|
- \lstset{commentstyle=\color{dkgreen}}
|
||||||
|
- \lstset{stringstyle=\color{mauve}}
|
||||||
|
- \lstset{breaklines=true}
|
||||||
|
- \lstset{breakatwhitespace=true}
|
||||||
|
- \lstset{tabsize=4}
|
||||||
|
...
|
||||||
|
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet b "Bullet point"
|
||||||
|
|
||||||
|
* $1
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet sl "Slide notes"
|
||||||
|
|
||||||
|
# Slide $1
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet fsl "First slide notes"
|
||||||
|
# Slide $1
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet se "Section notes"
|
||||||
|
|
||||||
|
# Section $1
|
||||||
|
endsnippet
|
||||||
|
|
||||||
|
snippet fse "First section notes"
|
||||||
|
# Section $1
|
||||||
|
endsnippet
|
|
@ -25,12 +25,19 @@ nnoremap <leader>n :noh<cr>
|
||||||
"Move the current line up or down
|
"Move the current line up or down
|
||||||
nnoremap <leader>k :m-2<cr>==
|
nnoremap <leader>k :m-2<cr>==
|
||||||
nnoremap <leader>j :m+<cr>==
|
nnoremap <leader>j :m+<cr>==
|
||||||
|
""Markdown
|
||||||
|
autocmd Filetype markdown Goyo
|
||||||
|
let g:markdown_fenced_languages = ['cpp', 'python', 'java', 'sql']
|
||||||
|
let g:vim_markdown_math=1
|
||||||
""Snippets
|
""Snippets
|
||||||
let g:UltiSnipsExpandTrigger = '<tab>'
|
let g:UltiSnipsExpandTrigger = '<tab>'
|
||||||
let g:UltiSnipsJumpForwardTrigger = '<tab>'
|
let g:UltiSnipsJumpForwardTrigger = '<tab>'
|
||||||
let g:UltiSnipsJumpBackwardTrigger = '<s-tab>'
|
let g:UltiSnipsJumpBackwardTrigger = '<s-tab>'
|
||||||
""Vim-plug
|
""Vim-plug
|
||||||
call plug#begin('~/.config/nvim/plugged')
|
call plug#begin('~/.config/nvim/plugged')
|
||||||
|
Plug 'plasticboy/vim-markdown', { 'for': 'markdown' }
|
||||||
|
Plug 'junegunn/goyo.vim', {'for': 'markdown', 'on': 'Goyo' }
|
||||||
|
Plug 'SirVer/ultisnips', { 'for': 'markdown' }
|
||||||
Plug 'Raimondi/delimitMate'
|
Plug 'Raimondi/delimitMate'
|
||||||
Plug 'cocopon/iceberg.vim'
|
Plug 'cocopon/iceberg.vim'
|
||||||
Plug 'LnL7/vim-nix'
|
Plug 'LnL7/vim-nix'
|
||||||
|
@ -40,3 +47,24 @@ colorscheme iceberg
|
||||||
set termguicolors
|
set termguicolors
|
||||||
""Disabe status line
|
""Disabe status line
|
||||||
set laststatus=0
|
set laststatus=0
|
||||||
|
""Set Markdown filetype for neomutt
|
||||||
|
autocmd BufNewFile,BufRead /tmp/neomutt* set filetype=markdown
|
||||||
|
""Quit whether Goyo is active or not
|
||||||
|
function! s:goyo_enter()
|
||||||
|
let b:quitting = 0
|
||||||
|
let b:quitting_bang = 0
|
||||||
|
call feedkeys('jk')
|
||||||
|
autocmd QuitPre <buffer> let b:quitting = 1
|
||||||
|
cabbrev <buffer> q! let b:quitting_bang = 1 <bar> q!
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! s:goyo_leave()
|
||||||
|
if b:quitting_bang
|
||||||
|
qa!
|
||||||
|
else
|
||||||
|
qa
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
autocmd! User GoyoEnter nested call <SID>goyo_enter()
|
||||||
|
autocmd! User GoyoLeave nested call <SID>goyo_leave()
|
||||||
|
|
Loading…
Reference in New Issue