更改了 cygwin 主位置,現在終端找不到我的 .minttyrc 設定文件

更改了 cygwin 主位置,現在終端找不到我的 .minttyrc 設定文件

我必須HOME透過將 Cygwin 設定為拾取我設定的目錄來更改 Cygwin 的位置/etc/passwd(以下解決方案從這裡)。對於我的大多數配置文件來說這似乎不是問題。.bashrc並按.vimrc預期讀取。

但它沒有獲取我的.minttyrc文件的配置。它載入預設顏色。如果我嘗試透過 Windows 新增設置,右鍵單擊標題列並選擇選項,則會出現錯誤:

Could not save options to '[old home directory]':
No such file or directory.

如果我重建舊的主目錄並將.minttyrc文件放在那裡,它就可以正常工作。有什麼地方需要我單獨更新位置嗎.minttyrc

答案1

終端找不到我的 .minttyrc 設定文件

您可以使用該-c file選項指定 mintty 設定檔的位置。

最簡單的方法是將你的 mintty 快捷方式改為

C:\cygwin\bin\mintty.exe -c ~/.minttyrc -i /Cygwin-Terminal.ico -

根據您的 Cygwin 設定進行適當修改。


進一步閱讀

$ mintty --help
Usage: mintty [OPTION]... [ PROGRAM [ARG]... | - ]

Start a new terminal session running the specified program or the user's shell.
If a dash is given instead of a program, invoke the shell as a login shell.

Options:
  -c, --config FILE     Load specified config file
  -e, --exec            Treat remaining arguments as the command to execute
  -h, --hold never|start|error|always  Keep window open after command finishes
  -i, --icon FILE[,IX]  Load window icon from file, optionally with index
  -l, --log FILE|-      Log output to file or stdout
  -o, --option OPT=VAL  Override config file option with given value
  -p, --position X,Y    Open window at specified coordinates
  -s, --size COLS,ROWS  Set screen size in characters
  -t, --title TITLE     Set window title (default: the invoked command)
  -u, --utmp            Create a utmp entry
  -w, --window normal|min|max|full|hide  Set initial window state
      --class CLASS     Set window class name (default: mintty)
  -H, --help            Display help and exit
  -V, --version         Print version information and exit

相關內容