<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.fortier-family.com/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel xmlns:g="http://base.google.com/ns/1.0">
        <title>Warnaud&#039;s Wiki - dotfiles</title>
        <description></description>
        <link>https://wiki.fortier-family.com/</link>
        <lastBuildDate>Tue, 28 Apr 2026 20:00:25 +0000</lastBuildDate>
        <generator>FeedCreator 1.8</generator>
        <image>
            <url>https://wiki.fortier-family.com/_media/wiki/logo.png</url>
            <title>Warnaud&#039;s Wiki</title>
            <link>https://wiki.fortier-family.com/</link>
        </image>
        <item>
            <title>bashrc</title>
            <link>https://wiki.fortier-family.com/dotfiles/bashrc</link>
            <description>My actual ~/.bashrc with:

	*  Alias
	*  Completions
	*  Functions
	*  Fun Prompt

You need:

	*  bash
	*  ccze


#
# ~/.bashrc
#

# If not running interactively, don&#039;t do anything
[[ $- != *i* ]] &amp;&amp; return

# include the global system file
if [ -f /etc/bashrc ]; then
    . /etc/bashrc
fi

# Add some color schema
if [[ &quot;$TERM&quot; != &quot;linux&quot; &amp;&amp; -f ~/.dircolors.256colors ]]; then
    eval $(dircolors ~/.dircolors.256colors)
elif [[ -f ~/.dircolors ]]; then
    eval $(dircolors ~/.dircolors)
fi

# Add…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 Dec 2020 04:23:57 +0000</pubDate>
        </item>
        <item>
            <title>dircolors.256colors</title>
            <link>https://wiki.fortier-family.com/dotfiles/dircolors.256colors</link>
            <description># Dark 256 color solarized theme for the color GNU ls utility.
# Used and tested with dircolors (GNU coreutils) 8.5
#
# @author  {@link http://sebastian.tramp.name Sebastian Tramp}
# @license http://sam.zoy.org/wtfpl/  Do What The Fuck You Want To Public License (WTFPL)
#
# More Information at
# https://github.com/seebi/dircolors-solarized

# Term Section
TERM Eterm
TERM ansi
TERM color-xterm
TERM con132x25
TERM con132x30
TERM con132x43
TERM con132x60
TERM con80x25
TERM con80x28
TERM con80x30
TE…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 Dec 2020 04:23:57 +0000</pubDate>
        </item>
        <item>
            <title>dircolors</title>
            <link>https://wiki.fortier-family.com/dotfiles/dircolors</link>
            <description># COLOR needs one of these arguments: &#039;tty&#039; colorizes output to ttys, but not
# pipes. &#039;all&#039; adds color characters to all output. &#039;none&#039; shuts colorization
# off.
COLOR all

# Below, there should be one TERM entry for each termtype that is colorizable
TERM ansi
TERM color_xterm
TERM color-xterm
TERM con132x25
TERM con132x30
TERM con132x43
TERM con132x60
TERM con80x25
TERM con80x28
TERM con80x30
TERM con80x43
TERM con80x50
TERM con80x60
TERM cons25
TERM console
TERM cygwin
TERM dtterm
TERM Eterm
…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 Dec 2020 04:23:57 +0000</pubDate>
        </item>
        <item>
            <title>start</title>
            <link>https://wiki.fortier-family.com/dotfiles/start</link>
            <description>Here is the configuration file I am using/abusing

	*  ~/.bashrc
	*  ~/.dircolors
	*  ~/.dircolors.256colors
	*  ~/.vimrc
	*  ~/.xinitrc

=&gt; On GitLab: &lt;https://gitlab.com/arnaud.fortier/dotfiles&gt;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 30 Dec 2021 08:28:10 +0000</pubDate>
        </item>
        <item>
            <title>vimrc</title>
            <link>https://wiki.fortier-family.com/dotfiles/vimrc</link>
            <description>Based on &lt;http://amix.dk/vim/vimrc.html&gt;


&quot; Sets how many lines of history VIM has to remember
set history=300

&quot; Enable filetype plugin
&quot; filetype plugin on
&quot; filetype indent on

&quot; 256 Colors
set t_Co=256

&quot; Set to auto read when a file is changed from the outside
set autoread

&quot;set number          &quot; show line numbers
set ignorecase      &quot; ignore case when searching
set hlsearch        &quot;Highlight search things
set showmatch 		&quot;Show matching bracets when text indicator is over them
set mat=2 		…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 Dec 2020 04:23:57 +0000</pubDate>
        </item>
        <item>
            <title>xinitrc</title>
            <link>https://wiki.fortier-family.com/dotfiles/xinitrc</link>
            <description>#!/bin/sh

#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)

#xmodmap -e &quot;pointer = 1 2 3 4 5 6 7 8 9 10 11&quot; &amp;
#imwheel -f -k -b &quot;89&quot; &amp;
#xmodmap ~/.Xmodmap &amp;
#xbindkeys &amp;
#xcompmgr -c &amp;


# Read all xinitrc.d folder
if [ -d /etc/X11/xinit/xinitrc.d ]; then
  for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x &quot;$f&quot; ] &amp;&amp; . &quot;$f&quot;
  done
  unset f
fi

# Start libnotify daemon
dex /etc/xdg/autostart/notification-daemon-autostart.desktop

# Launch fvwm and log output in ~/fvwm-log…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 Dec 2020 04:23:57 +0000</pubDate>
        </item>
        <item>
            <title>xresources</title>
            <link>https://wiki.fortier-family.com/dotfiles/xresources</link>
            <description>!########################
!#
!#  General Section
!#
!###################################
Xcursor.theme: Silver
!#Xcursor.size: 48                               
!*beNiceToColormap: False                        

Xft.dpi: 96
Xft.autohint: 0
Xft.lcdfilter:  lcddefault
Xft.hintstyle:  hintfull
Xft.hinting: 1
Xft.antialias: 1
Xft.rgba: rgb

! Default Back and foreground

*background: #262626
*foreground: #babdb6

! gnometerm scheme
!Theme: http://xcolors.net/
! Black
*color0:   #000000
*color8:   #5…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 29 Dec 2021 20:20:55 +0000</pubDate>
        </item>
    </channel>
</rss>
