Vídeo instalación de Geany:
- Editor de texto liviano
- Integra terminal de comandos
- Compatible con Makefile
- Altamente configurable
- Permite la lectura de archivos.md (MarkDown)
En debian:
sudo apt install geany geany-pluginsActivar los plugins:
- MarkDown
- Split window
- Tree browser
El archivo template.html que está en el path
~/.config/geany/plugins/markdown/template.htmlConfigurar la su contenido como sigue:
<html>
<head>
<style type="text/css">
body {
font-family: @@font_name@@;
font-size: @@font_point_size@@pt;
background-color: @@bg_color@@;
color: @@fg_color@@;
}
code {
white-space: pre-line;
color: crimson;
background-color: #f1f1f1;
font-family: @@code_font_name@@;
font-size: @@code_font_point_size@@pt;
}
img {
height: 60%;
}
</style>
</head>
<body>
@@markdown@@
</body>
</html>Las instrucciones referidas son aquellas que se ejecutan en terminal
Ir a Build -> Set Build Commands y agregar la siguiente información:
[build-menu]
FT_00_LB=simular
FT_00_CM=make sim
FT_00_WD=
FT_01_LB=sintetizar
FT_01_CM=make syn
FT_01_WD=
FT_02_LB=configurar
FT_02_CM=make config
FT_02_WD=Visita el sitio temas geany, seleccione
el tema e instalar en ~/.config/geany/colorschemes/, reinicie Geany y en View -> Change Color Scheme
seleccione el tema deseado
