摘要: ~/.zshrc export EDITOR=nvim # Use powerline USE_POWERLINE="true" # Source manjaro-zsh-configuration if [[ -e /usr/share/zsh/manjaro-zsh-config ]]; the 阅读全文
posted @ 2021-03-06 15:37 moonwhite1 阅读(207) 评论(0) 推荐(0) 编辑
摘要: hosts # Static table lookup for hostnames. # See hosts(5) for details. 127.0.0.1 localhost ::1 localhost 127.0.1.1 arch.localdomain arch # GitHub Star 阅读全文
posted @ 2021-02-17 22:28 moonwhite1 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 安装lib32-nvidia-utils和gnome-settings-daemon 设置自动启动脚本 /usr/lib/gsd-setttings设置为自动启动 阅读全文
posted @ 2020-09-23 18:48 moonwhite1 阅读(401) 评论(0) 推荐(0) 编辑
摘要: nvim or vim配置 vim配置文件为~/.vimrc nvim配置文件为~/.config/nvim/init.vim 需要下载nodejs和nerd-font自体 " __ ____ __ _ ___ _____ __ __ ____ ____ "| \/ \ \ / / | \ | \ 阅读全文
posted @ 2020-08-27 22:10 moonwhite1 阅读(1681) 评论(0) 推荐(0) 编辑
摘要: dijkstra Dijkstra求最短路 I \(O(n^2)\) 单源最短路(Single Source Shortest Path) 题目链接 #include <bits/stdc++.h> using namespace std; const int N = 510, INF = 0x3f 阅读全文
posted @ 2020-08-13 15:13 moonwhite1 阅读(93) 评论(0) 推荐(0) 编辑