Add files

master
trémeur 4 years ago
commit fc685a4f43

7
.gitignore vendored

@ -0,0 +1,7 @@
auto-save-list/*
backups/*
elpa/*
emojis/*
recentf
url/*

@ -0,0 +1,13 @@
(setq org-agenda-files '("~/Documents/drive/org/calendar"))
(setq org-agenda-prefix-format '((agenda . "%?-12t%-30b%s")))
(setq org-agenda-show-current-time-in-grid nil)
(setq org-deadline-warning-days 0)
(setq org-agenda-skip-scheduled-if-done t)
(setq org-agenda-skip-deadline-if-done t)
(setq calendar-day-name-array ["de Sul" "de Lun" "de Meurth" "de Mergher"
"de Yow" "de Gwener" "de Sadorn"])
(setq calendar-day-abbrev-array ["Su" "L" "Mth" "Mr" "Y" "G" "Sa"])
(setq calendar-month-name-array ["mis Genver" "mis Whevrel" "mis Meur"
"mis Ebrel" "mis Me" "mis Efen"
"mis Gorefen" "mis Est" "mis Gwyngala"
"mis Hedra" "mis Du" "mis Kevardhu"])

@ -0,0 +1,217 @@
body {
font-family: 'Raleway', sans-serif;
line-height: 1.5;
}
a {
text-decoration: none;
color: #999;
}
a:visited {
color: #737373;
}
a:hover {
text-decoration: underline;
}
nav {
position: fixed;
width: 200px;
height: 82%;
overflow: auto;
}
nav ul, footer ul {
list-style-type: none;
margin: 30px;
padding: 0;
}
nav ul li, footer ul li {
padding: 5px;
}
nav a:hover, footer a:hover {
text-decoration: underline;
background: #e6e6e6;
}
body {
position: relative;
left: 200px;
width: 70%;
padding: 30px 30px 30px 10px;
margin: 0;
}
h1 {
font-size: 3em;
font-family: 'Fredoka One', cursive;
font-weight: normal;
-webkit-transition: color 0.5s; /* Safari */
transition: color 0.5s;
}
h1:hover {
color: silver;
}
h2 {
font-size: 2em;
font-family: 'Fredoka One', cursive;
font-weight: normal;
}
p {
font-size: 1em;
color: #333;
font-family: 'Raleway', sans-serif;
}
.bibentry {
padding-left: 22px ;
text-indent: -22px ;
text-align: left;
}
.tooltip {
border-bottom: 1px dashed;
}
blockquote {
font-style: italic;
border-left: 2px solid silver;
padding: 0 0 0 8px;
}
blockquote i, blockquote em {
font-style: normal;
}
.langpoint {
display: inline;
margin: 0 10px 0 0;
border-radius: 5px;
}
.noit {
font-style: normal;
padding: 0;
border: none;
}
.noit i, .noit em {
font-style: italic;
}
figure {
border: 1px solid black;
width: 50%;
text-align: center;
font-size: smaller;
text-indent: 0;
margin: auto;
padding: 0.5em;
}
img {
width: 100%;
}
.strong {
font-weight: bold;
}
footer {
position: fixed;
bottom: 0;
width: 200px;
height: 30%;
}
ul.posts {
margin: 20px auto 40px;
font-size: 1em;
}
ul.posts li {
list-style: none;
}
.collapsible {
background-color: inherit;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
color: #333;
font-family: 'Raleway', sans-serif;
font-size: 1em;
}
.collapsible:after {
content: '▸';
font-weight: bold;
float: left;
margin-right: 5px;
}
.active:after {
content: "▼";
}
.collcontent {
padding: 0 18px;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
color: #333;
}
@media (max-width: 810px) {
nav {
border-bottom: 1px solid #737373;
position: static;
width: 100%;
height: auto;
}
nav ul, footer ul {
line-height: 50px;
}
nav ul li, footer ul li {
display: inline;
background: #f2f2f2;
margin: 10px;
}
nav a:hover, footer a:hover {
background: #f2f2f2;
}
body {
padding: 30px 10px 30px 10px;
margin: 0;
position: static;
left: auto;
width: 100%;
}
footer {
border-top: 1px solid #737373;
position: static;
width: 100%;
height: auto;
}
}
#postamble {
border: 1px solid #ccc;
box-shadow: 3px 3px 3px #eee;
padding: 8pt;
overflow: auto;
margin: 1.2em;
display: inline-block;
}
.title {
text-align: left;
}
code {
background-color: #efefef;
font-family: 'Share Tech Mono', monospace;
}
pre {
display: inline-block;
}
.done {
font-family: monospace;
}

@ -0,0 +1,8 @@
# name: border-box
# key: bbox
# --
*, *::before, *::after {
box-sizing: border-box;
}
$0

@ -0,0 +1,14 @@
# name: html-skeleton
# key: skel
# --
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>${1:Title}</title>
</head>
<body>
$0
</body>
</html>

@ -0,0 +1,6 @@
# name: enumerate
# key: enum
# --
\begin{enumerate}
\item $0
\end{enumerate}

@ -0,0 +1,7 @@
# name: frame
# key: fr
# --
\begin{frame}
\frametitle{$1}
$0
\end{frame}

@ -0,0 +1,13 @@
# name: latex-headers
# key: hdrs
# --
\documentclass{article}
\input{$HOME/Documents/drive/res/latex-headers-templates/headers/standard}
% \input{$HOME/Documents/drive/res/latex-headers-templates/headers/bibsetup}
\begin{document}
$0
\end{document}

@ -0,0 +1,6 @@
# name: itemize
# key: item
# --
\begin{itemize}
\item $0
\end{itemize}

@ -0,0 +1,6 @@
# name: insert-time
# key: time
# type: command
# binding: C-x t
# --
(insert (format-time-string "%H:%M"))

@ -0,0 +1,5 @@
# name: if-main-py
# key: ifmain
# --
if __name__ == "__main__":
$0

@ -0,0 +1,6 @@
# name: shebang
# key: !
# --
#!/usr/bin/env bash
$0
Loading…
Cancel
Save