Compare commits

..

No commits in common. "5df2c146267483f2c23779103076c6cb6c9f571d" and "cc79c734fed2ad73fb4d4707403032ba0843db9f" have entirely different histories.

17 changed files with 47 additions and 23 deletions

View file

@ -22,7 +22,6 @@ video/quicktime=mpv.desktop;vlc.desktop
video/webm=mpv.desktop;vlc.desktop video/webm=mpv.desktop;vlc.desktop
video/x-flv=mpv.desktop;vlc.desktop video/x-flv=mpv.desktop;vlc.desktop
video/x-matroska=mpv.desktop;vlc.desktop video/x-matroska=mpv.desktop;vlc.desktop
video/x-ms-asf=mpv.desktop;vlc.desktop
video/x-msvideo=mpv.desktop;vlc.desktop video/x-msvideo=mpv.desktop;vlc.desktop
application/x-extension-htm=firefox.desktop application/x-extension-htm=firefox.desktop

View file

@ -2,5 +2,7 @@
[ ! -d "$HISTFILE_DIR" ] && mkdir -p "$HISTFILE_DIR" [ ! -d "$HISTFILE_DIR" ] && mkdir -p "$HISTFILE_DIR"
[ ! -d "$COMPDIR" ] && mkdir -p "$COMPDIR" [ ! -d "$COMPDIR" ] && mkdir -p "$COMPDIR"
hash transmission-daemon 2>/dev/null && transmission-daemon # transmission
hash kitty 2>/dev/null && export TERMINAL="kitty" if hash transmission-daemon 2>/dev/null; then
transmission-daemon
fi

View file

@ -1,6 +1,6 @@
[user] [user]
name = Rodolphe Bréard name = Rodolphe Bréard
email = v.code.ngyvz7vf@what.tf email = rodolphe@what.tf
SigningKey = B229CCD5690091E7D5D6189F09BC23A1D5562635 SigningKey = B229CCD5690091E7D5D6189F09BC23A1D5562635
[core] [core]

3
.gitignore vendored
View file

@ -9,7 +9,8 @@ __pycache__/
*$py.class *$py.class
# Vim # Vim
.vim/plugged/* .vim/bundle/*
!.vim/bundle/Vundle.vim
.vim/.netrwhist .vim/.netrwhist
*.swp *.swp

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule ".vim/bundle/Vundle.vim"]
path = .vim/bundle/Vundle.vim
url = https://github.com/VundleVim/Vundle.vim.git

@ -0,0 +1 @@
Subproject commit b255382d6242d7ea3877bf059d2934125e0c4d95

View file

@ -1 +0,0 @@
set expandtab&

View file

@ -1 +0,0 @@
set expandtab&

31
.vimrc
View file

@ -1,19 +1,25 @@
set nocompatible set nocompatible
filetype off filetype off
" Install Vundle:
" $ git clone https://github.com/VundleVim/Vundle.vim.git \
" ~/.vim/bundle/Vundle.vim
"
" Install all plugins: " Install all plugins:
" $ vim +PlugInstall " $ vim +PluginInstall +qall
call plug#begin('~/.vim/plugged') set rtp+=~/.vim/bundle/Vundle.vim " Set the runtime path to include Vundle and initialize.
Plug 'bling/vim-airline' " Lean & mean status/tabline for vim that's light as air. call vundle#begin()
Plug 'antoyo/vim-licenses' " Vim Plugin that Provides Commands to Add Licenses at the Top of the Buffer. Plugin 'VundleVim/Vundle.vim' " Let Vundle manage Vundle, required.
Plug 'sjl/badwolf' " A Vim color scheme. Plugin 'bling/vim-airline' " Lean & mean status/tabline for vim that's light as air.
Plug 'rust-lang/rust.vim' " Vim configuration for Rust. Plugin 'antoyo/vim-licenses' " Vim Plugin that Provides Commands to Add Licenses at the Top of the Buffer.
Plug 'cespare/vim-toml' " Vim syntax for TOML. Plugin 'breard-r/vim-dnsserial' " Another DNS-zone serial number updater.
Plug 'editorconfig/editorconfig-vim' " EditorConfig plugin Plugin 'sjl/badwolf' " A Vim color scheme.
Plug 'Yggdroot/indentLine' " Display thin vertical lines at each indentation level Plugin 'rust-lang/rust.vim' " Vim configuration for Rust.
Plug 'leafOfTree/vim-vue-plugin' " Vim syntax and indent plugin for .vue files. Plugin 'cespare/vim-toml' " Vim syntax for TOML.
call plug#end() Plugin 'editorconfig/editorconfig-vim' " EditorConfig plugin
Plugin 'Yggdroot/indentLine' " Display thin vertical lines at each indentation level
call vundle#end()
syntax on " Enable syntax highlighting. syntax on " Enable syntax highlighting.
@ -67,9 +73,8 @@ let g:licenses_default_commands = ['affero', 'apache', 'bsd3', 'cecill', 'gfdl',
:augroup END :augroup END
" indentLine " Vertical indentation lines
let g:indentLine_char = '⦙' let g:indentLine_char = '⦙'
let g:indentLine_setConceal = 0
" Tera templates " Tera templates

View file

@ -30,7 +30,7 @@ pacman -S dosfstools mtools
``` sh ``` sh
# Base utils # Base utils
yay -S liquidprompt vim-plug yay -S liquidprompt
# Printer # Printer
yay -S brother-dcp1610w brscan-skey brscan4 yay -S brother-dcp1610w brscan-skey brscan4
# Graphical software # Graphical software
@ -39,10 +39,25 @@ yay -S cardpeek
## vim ## vim
Plugins are managed by `vim-plug`, which is installed from the AUR. Plugins are managed by Vundle, which is a git submodule. After cloning the `dotfiles` repository, you have to initialize the submodule and install all plugins.
``` sh ``` sh
vim +PlugInstall cd dotfiles/
git submodule init
git submodule update
vim +PluginInstall +qall
```
Plugins can be updated with `vim +PluginUpdate +qall`.
Updating the Vundle submodule:
``` sh
cd .vim/bundle/Vundle.vim
git checkout master
git pull
cd -
git commit -m 'Update Vundle'
``` ```