Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spiderpig86/dotfiles
:rice: Some dotfiles.
https://github.com/spiderpig86/dotfiles
bash dotfiles hyper powershell vim vimrc vscode zsh
Last synced: 24 days ago
JSON representation
:rice: Some dotfiles.
- Host: GitHub
- URL: https://github.com/spiderpig86/dotfiles
- Owner: Spiderpig86
- Created: 2018-01-12T02:18:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-05T09:00:55.000Z (6 months ago)
- Last Synced: 2024-11-05T14:52:59.676Z (2 months ago)
- Topics: bash, dotfiles, hyper, powershell, vim, vimrc, vscode, zsh
- Language: Shell
- Size: 438 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
A small opinionated list of dot files used to set up my apps.## Hyper Terminal
### Performance
* To ensure that this uses as little CPU as possible on windows, make the following changes:
* **hyperline.js**
* In `componentDidMount()`, increase the timeout or comment the following line completely. It is not worth the extra CPU cycles to check your connection speed and have `WMI.exe` go nuts.
```JavaScript
componentDidMount() {
this.getSpeed();
// Remove the following line
this.interval = setInterval(() => this.getSpeed(), 1500);
}
```
* **index.js** for hyper-tabs-enhanced
* After checking why this plugin began to burn my lap, it seems that the transparency property for the traffic button was to blame.
```JavaScript
if (!hyperTabs.trafficButtons) {
exports.decorateBrowserOptions = (defaults) => {
return Object.assign({}, defaults, {
titleBarStyle: '',
transparent: true, // CHANGE THIS TO FALSE
frame: false,
});
};
}
```
### Styling
* When using hyperline, scrollbars tend to appear since the plugin itself takes up too much space.
* Make sure to install *hyper-stylesheet* and include `.hyper.css` in your user folder.