Compare commits
1 Commits
master
...
hosts/kali
Author | SHA1 | Date | |
---|---|---|---|
e7e3ed0736 |
@ -1,18 +1,33 @@
|
||||
# ~/.profile: executed by the command interpreter for login shells.
|
||||
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
|
||||
# exists.
|
||||
# see /usr/share/doc/bash/examples/startup-files for examples.
|
||||
# the files are located in the bash-doc package.
|
||||
# $FreeBSD: releng/11.1/share/skel/dot.profile 278616 2015-02-12 05:35:00Z cperciva $
|
||||
#
|
||||
# .profile - Bourne Shell startup script for login shells
|
||||
#
|
||||
# see also sh(1), environ(7).
|
||||
#
|
||||
|
||||
# the default umask is set in /etc/profile; for setting the umask
|
||||
# for ssh logins, install and configure the libpam-umask package.
|
||||
#umask 022
|
||||
# These are normally set through /etc/login.conf. You may override them here
|
||||
# if wanted.
|
||||
# PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:$HOME/bin; export PATH
|
||||
# BLOCKSIZE=K; export BLOCKSIZE
|
||||
|
||||
# Setting TERM is normally done through /etc/ttys. Do only override
|
||||
# if you're sure that you'll never log in via telnet or xterm or a
|
||||
# serial line.
|
||||
# TERM=xterm; export TERM
|
||||
|
||||
EDITOR=vi; export EDITOR
|
||||
PAGER=more; export PAGER
|
||||
|
||||
# set ENV to a file invoked each time sh is started for interactive use.
|
||||
ENV=$HOME/.shrc; export ENV
|
||||
|
||||
if [ -x /usr/bin/fortune ] ; then /usr/bin/fortune freebsd-tips ; fi
|
||||
|
||||
# if running bash
|
||||
if [ -n "$BASH_VERSION" ]; then
|
||||
# include .bashrc if it exists
|
||||
if [ -f "$HOME/.bashrc" ]; then
|
||||
. "$HOME/.bashrc"
|
||||
. "$HOME/.bashrc"
|
||||
fi
|
||||
fi
|
||||
|
||||
@ -21,5 +36,3 @@ if [ -d "$HOME/bin" ] ; then
|
||||
PATH="$HOME/bin:$PATH"
|
||||
fi
|
||||
|
||||
export LC_CTYPE=fr_FR.UTF-8
|
||||
|
||||
|
@ -8,12 +8,7 @@ call vundle#begin()
|
||||
Plugin 'VundleVim/Vundle.vim'
|
||||
Plugin 'scrooloose/nerdtree.git'
|
||||
Plugin 'bling/vim-airline'
|
||||
Plugin 'vim-jp/vim-go-extra'
|
||||
Plugin 'fatih/vim-go'
|
||||
Plugin 'posva/vim-vue'
|
||||
Plugin 'leafgarland/typescript-vim'
|
||||
|
||||
Bundle 'Quramy/tsuquyomi'
|
||||
Bundle 'chase/vim-ansible-yaml'
|
||||
" }}}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user