Git Product home page Git Product logo

dotfiles's Introduction

Artem Sapegin’s dotfiles 🐿️

WezTerm

Features

Installation

Warning

Fork this repository if you want to use my dotfiles.)

Prerequisites:

  1. Generate SSH key.

  2. Clone dotfiles:

git clone [email protected]:sapegin/dotfiles.git ~/dotfiles && cd ~/dotfiles
  1. Run setup script:
setup/setup.sh

Extras

Further customization

Updating

dotfiles

Resources


:shipit:

dotfiles's People

Contributors

denysdovhan avatar dependabot[bot] avatar grisaitis avatar nate-wilkins avatar nicksp avatar sapegin avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

dotfiles's Issues

$PROMPT_COMMAND shouldn't get overwritten?

Hey there,

Thanks for the awesome bash prompt! I cherry-picked it on its own and really like it. (Discovered via https://github.com/sindresorhus/pure via https://twitter.com/moox/status/856517368528465920.)

After setting it up, I started hitting a bug where my new Terminal tabs would stop maintaining the current directory. After some sleuthing, it was this:

https://apple.stackexchange.com/questions/128998/how-to-open-a-new-terminal-tab-in-current-working-directory

Indeed, $PROMPT_COMMAND is currently overwritten by your code (link):

command -v git >/dev/null 2>&1 && PROMPT_COMMAND=prompt_command

So the fix was simple:

command -v git >/dev/null 2>&1 && PROMPT_COMMAND="prompt_command; $PROMPT_COMMAND"

It looks like this bash_prompt.bash file no longer exists on master, so I'm not sure if you care for this fix or not. Just thought I'd give back and share in case anyone else runs into this.

So thanks again and cheers!

Broken search functionality inside the Integrated Terminal

// Close panel when pressing Escape inside the search panel
"key": "escape",
"command": "workbench.action.closePanel",
"when": "panelFocus || terminalFocus"
},

The current settings above have one drawback: when you try to search inside the terminal (Cmd+F) and then hide the search input by clicking a default Esc, the whole panel will be closed unexpectedly.

CleanShot 2024-04-22 at 18 28 46@2x

I played around a bit and here's the setup that fixes this and also allows to close any panel correctly:

{
    "comment": "Closes panel when pressing Escape inside the Search panel",
    "key": "escape",
    "command": "workbench.action.closePanel",
    "when": "activePanel == 'workbench.view.search' && panelFocus"
  },
  {
    "comment": "Closes panel when pressing Escape inside the Problems panel",
    "key": "escape",
    "command": "workbench.action.closePanel",
    "when": "activePanel == 'workbench.panel.markers' && panelFocus"
  },
  {
    "comment": "Closes panel when pressing Escape inside the Integrated Terminal panel",
    "key": "escape",
    "command": "workbench.action.closePanel",
    "when": "terminalFocus"
  },

Feel free to incorporate into your settings if that is of help.

Fix Linux support

  • brew in .zshrc (wrap in a condition or make it work on Linux)
  • rm (wrap in a condition, not really related to Linux)

PATH Error

hey, I have PATH error can u help me?

screenshot 2016-01-11 09 30 31
screenshot 2016-01-11 09 31 44

screenshot 2016-01-11 09 30 55

Missing script

Looks like your project opener is no longer in place.

CleanShot 2024-04-28 at 21 19 32@2x

Things I want to be automated

  • Ebooks converter / sender for Kindle.
  • Auto Foursquare checkin when I’m at home / office.
  • Copy new movies and series from Torrent folder to media center.

VSCode Terminal look

Not an issue but didn't find a proper place to ask this. I have a clear picture of your preferred way to configure/style and use VSCode editor where you typically have editor full screen along with file explorer. What about built-in terminal? How do you prefer to style it with your light code theme and whether you use it at all?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.