Skip to content

Instantly share code, notes, and snippets.

View t1m0t's full-sized avatar
😃
Onto Something New and Great!

Timothée t1m0t

😃
Onto Something New and Great!
  • Paris
View GitHub Profile
@t1m0t
t1m0t / userChrome.css
Last active May 19, 2024 07:44
Firefox custom css for auto hide of top bar and side bar
/* tab bar auto hide */
@-moz-document url(chrome://browser/content/browser.xul),
url(chrome://browser/content/browser.xhtml) {
/* show tabs toolbar when navigator-toolbox gets hovered */
#main-window:not([customizing]) #navigator-toolbox:hover #TabsToolbar {
visibility: visible !important;
opacity: 1 !important;
margin-bottom: 0px;
transition: visibility 0.1s linear, opacity 0.1s linear, margin-bottom 0.1s linear;
@t1m0t
t1m0t / tmux.conf
Created March 5, 2024 19:11
tmux.conf
set -g default-terminal "xterm-256color"
set -g mouse on
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
unbind %
bind ù split-window -h
bind , split-window -v
@t1m0t
t1m0t / install.sh
Last active October 2, 2023 14:39
install nvchad in wsl for ubuntu
# make sure to read the docs here https://nvchad.com/docs/quickstart/install
# two ways to install neovim, like this
sudo add-apt-repository ppa:neovim-ppa/stable -y
sudo add-apt-repository ppa:neovim-ppa/unstable -y
sudo apt update && sudo apt upgrade -y
sudo apt install neovim -y
# or like this
sudo snap install node nvim --classic
# then
sudo apt install ripgrep mingw-w64 build-essential -y