Skip to content

Just dotfiles for easy setup. Definitely a wip.

Notifications You must be signed in to change notification settings

williycole/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

Dotfiles for Neovim with WSL, Go, and DAP

This repository contains my personal configuration to use Neovim, Go, and Debug Adpater Protocol (DAP) support. Kickstart.nvim was used to initalzie this configuration. This config should work across powershell, WSL, and gitbash, pending all required dependencies are installed in your environment.

Table of Contents

Prerequisites

Before you begin, ensure you have the following installed:

  • Windows Subsystem for Linux (WSL): Follow the instructions here to install WSL on your Windows machine.
  • Ubuntu: You can install Ubuntu from the Microsoft Store.

Installation

  1. Open WSL (Ubuntu): Launch Ubuntu from the Start menu.

  2. Install Go:

    sudo apt update
    sudo rm -rf /usr/local/go
    wget https://go.dev/dl/go1.22.7.linux-amd64.tar.gz
    sudo tar -C /usr/local -xzf go1.22.7.linux-amd64.tar.gz
    echo 'export GOROOT=/usr/local/go' >> ~/.bashrc
    echo 'export PATH=$GOROOT/bin:$PATH' >> ~/.bashrc
    source ~/.bashrc
    go version  # Verify installation
    

TODO: A list of things I still want todo

  1. Explore installing all deps of my workflow via a script
    • primagen has a course for this on frontend masters
  2. Polish all dotfiles
  3. Explore more efficient ways of managing my dotfiles and implement or create one.
  4. Optomize glazewm / zebar setup
  5. explore tools/shells like fish

About

Just dotfiles for easy setup. Definitely a wip.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published