.vimrc设置未在Windows 10上的bash会话之间保存

时间:2017-09-30 15:48:30

标签: windows bash vim

如果我编辑我的.vimrc文件添加新设置,然后退出我的bash会话并打开一个新设置,则所有设置都将消失。 .vimrc文件始终恢复为具有以下内容:

syntax on
set shiftwidth=4 tabstop=4 expandtab

首先输入bash,然后使用.vimrc转到我的主目录,编辑cd ~文件。当我在那里时,我输入vi .vimrc。要保存我的新设置,请执行:w!,然后:q!退出。

每当重新进入bash时,新设置都会被我粘贴的块覆盖。

修改

以下是我.profile的内容:

# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022

# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
    . "$HOME/.bashrc"
    fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
fi

1 个答案:

答案 0 :(得分:0)

我发现了codeforester指出的问题。我的.bashrc中有一行在启动时覆盖了我的.vimrc