Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 762 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 762 Bytes

.dotfiles

This repository contains my dotfiles, which are configuration files for various tools and applications. I use Dotbot to manage and symlink these dotfiles to their appropriate locations.

Usage

To install follow these steps:

  1. Clone this repository to your home directory:

    git clone https://github.com/yourusername/dotfiles.git ~/.dotfiles
  2. Run the /.install script.

Adding shell completion

[command] completion [shell] > "${fpath[1]}/_command"

Replace [command] and [shell] with actual values.

${fpath[1]} refers to the second element of the Zsh function path (fpath). This path determines where the completion script _command will be stored.