emacs的几种path

几种路径 执行路径 C-h v ;;查看变量 exec-path 变量类型为list 主题路径 custom-theme-load-path 变量类型为list 加载路径 load-path 变量类型为list shell路径 shell-file-name 默认是系统自带,可以更改自定义she……

阅读全文

Emacs基础

安装 linux系统安装 $sudo apt-get install emacs window安装下载exe或msi安装包手动安装,将安装路径放入系统环境变量path中 或使用包管理scoop | chocolatey install emacs 基础 入门学习1……

阅读全文

elisp基础

前缀表达式 波兰式 S-表达式 1 2 3 (+ 2 2 2 2) (+ 2 (\* 3 4)) 声明变量 变量赋值 打印变量 1 2 3 4 5 (defvar name value) (setq name "zilong") (message name) 函数定义 函数调用 1 2 3 4 5 6 (defun func() (interactive) (message "hello22, %s" name)) (setq name "shanren") (func) 快捷键绑……

阅读全文

搭建博客参考资料

起因是学习子龙山人20天学习emacs视频,bilbil地址 21天学会emacs 发现可以使用org Mode + hugo (org-mode Emacs强大的文字工具)来写博客 所以萌生想法把博客托……

阅读全文

使用hugo本地建站

使用命令创建站点 1 hugo new site hugoblog 会显示以下结构 下载主题 git submodule add git@github.com:flysnow-org/maupassant-hugo.git themes/maupassant 启动本地博客服务 1 hugo server -D -t maupassant -D代表草稿可以发布 -t 代表主题名称 执行完后显示如下 https://img.vinua.cn/image/Otu9E 打印构建过程,然后显示……

阅读全文

使用巧克力包管理安装其他工具

确保上篇文章已经正确安装 就可以开始使用包管理器进行搜索,安装,更新操作 巧克力查看命令帮助 常用命令 chocolatey -version 显示版本 chocolatey help 帮助 chocolatey search 、find 查找包 chocolatey install 安装包 chocolatey uninstall 卸载包 chocolatey upgrade……

阅读全文

GTD,ELisp教程

阅读gtd Entered on [2023-05-22 Mon 09:42] -天气: 下雨 学习GTD define: GETTING THINGS DONE® is a personal productivity methodology that redefines how you approach your life and work. step1: STEP 1 CAPTURE Collect what has your attention Write, record, or gather any and everything that has your attention into a collection tool. step2: STEP 2 CLARIFY Process what it means Is it actionable? If so,……

阅读全文

chocolatey安装教程

chocolatey安装教程 packagemanage 在window系统安装chocolatey包管理器 使用 powershell 来安装(如果你的系统没有 powershell, 需要首先安装 powershell). 使用管理员权限打开 powershell Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol =……

阅读全文

博客搭建工具

博客搭建工具 chocolatey hugo emacs org-mode ox-hugo easy-hugo git bash github action 腾讯云域名 CDN加速……

阅读全文