1
0
Fork 0
intro-to-vim/index.html

68 lines
1.8 KiB
HTML
Raw Normal View History

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Intro to Vim</title>
<link rel="stylesheet" href="bower_components/reveal.js/css/reveal.min.css">
<link rel="stylesheet" href="bower_components/reveal.js/css/theme/solarized.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- Introduction Slide -->
<section>
<h1>Intro to Vim</h1>
</section>
<!-- Resources Slide -->
<section>
<h1>Resources</h1>
<h3>Other Talks</h3>
<p>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=SkdrYWhh-8s">
Write Code Faster: Expert-Level Vim
</a>
by Ben Orenstein
</li>
<li>
<a href="https://www.youtube.com/watch?v=aHm36-na4-4">
More Instantly Better Vim
</a>
by Damian Conway
</li>
<li>
<a href="https://www.youtube.com/watch?v=9jzWDr24UHQ">
Impressive Ruby Productivity With Vim and Tmux
</a>
by Chris Hunt
</li>
</ul>
</p>
<h3>Repository</h3>
<p>
<ul>
<li>
<a href="https://www.github.com/atomaka/intro-to-vim">
www.github.com/atomaka/intro-to-vim
</a>
</li>
</ul>
</p>
</section>
</div>
</div>
<script src="bower_components/reveal.js/js/reveal.min.js"></script>
<script>
Reveal.initialize({
controls: false,
progress: true,
history: true,
transition: 'linear'
});
</script>
</body>
</html>