摘要:
网站 https://www.pling.com/ 下载速度很慢,不过大多数具体的主题文件,都会在下载页面标识出github页面,可以直接去clone 新发现的一个主题 https://github.com/nana-4/materia-theme 先看美化的效果图 2021-12-15更新,关于s 阅读全文
摘要:
开始之前 够用就好!!!!!!!!!! 关于过时插件的替代 https://www.zhihu.com/question/31934850 我的设置 直接在~/.vimrc文件上写上如下配置即可 "逗号作为leader键 let mapleader="," set nu "显示行号 "set cur 阅读全文
摘要:
首先设置为和内置键盘一样的行文 然后吧cap键映射为fn 最后把fn+hjkl映射为上下左右 以下是具体的映射代码: { "description": "Change fn+hjkl to arrow keys", "manipulators": [ { "from": { "key_code": 阅读全文
摘要:
从源代码编译安装的,虽然启动的gnome x11,但是贴图仍然没有生效,下面的配置文件不使用wayland之后正常使用(修改完成之后需要重启) 阅读全文
摘要:
![](https://img2024.cnblogs.com/blog/871381/202406/871381-20240612161103548-1906063419.png) 阅读全文
摘要:
https://github.com/zhullyb/dingtalk-for-fedora/blob/master/README_zh.md 用deb包转成rpm,然后用dnf安装rpm即可 dingtalk-for-fedora提供了如何转化,需要了解rpmrebuild如何使用 阅读全文
摘要:
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$' 阅读全文
摘要:
Unable to negotiate with x.x.x.x port 2222: no matching host key type found. Their offer: ssh-rsa 修改ssh的配置文件~/.ssh/config添加,默认开启rsa HostKeyAlgorithms 阅读全文
摘要:
# 语言: None, Cpp, Java, JavaScript, ObjC, Proto, TableGen, TextProto Language: Cpp # BasedOnStyle: LLVM # 访问说明符(public、private等)的偏移 AccessModifierOffse 阅读全文
摘要:
最重要的几个概念 session, window , pane 在这里我们就把他们分别叫做会话,窗口,窗格 一个 session里面可以有很多窗口,一个窗口又可以有很多的窗格 session操作 # 新建session tmux tmux new -s <session-name> # 离开当前se 阅读全文
摘要:
配置文件位置~/.config/nvim/init.lua,如果是Windows系统~/Appdata/Local/nvim/init.lua ├── init.lua └── lua ├── map.lua ├── options.lua └── plugins.lua init.lua只需要用r 阅读全文
摘要:
function getDecisionState(){ cat $1 | grep -a ":drive_state_child:" | sed s/"<trace.*_child:"//g > state.txt } 阅读全文