From 58066efd7feb6a195863065a711b4e945a90cd44 Mon Sep 17 00:00:00 2001 From: candifloss Date: Tue, 17 Dec 2024 12:17:49 +0530 Subject: [PATCH] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ad7e7e2..b16e5c7 100644 --- a/README.md +++ b/README.md @@ -143,14 +143,16 @@ mkdir -p plugged session sessions chmod 755 /etc/vim/* chmod o+r /etc/vim/autoload/* chmod o+r /etc/vim/colors/* -chmod o+r -R /etc/vim/plugged/* -chmod o+x /etc/vim/plugged/* ``` That should work. ### Troubleshooting -- **Permissions**: Ensure that the directories and files in `/etc/vim` have the correct read and execute permissions for all users who need access. +- **Permissions**: Ensure that the directories and files in `/etc/vim` have the correct read and execute permissions for all users who need access. If plugins face file permission issues, try this: +```bash +chmod o+r -R /etc/vim/plugged/* +chmod o+x /etc/vim/plugged/* +``` - **Plugin Conflicts**: If you encounter issues with specific plugins, check their documentation for configuration options or known issues.