Compare commits

...

1 Commits

Author SHA1 Message Date
e7e3ed0736 Config profile/vim kalish 2024-06-20 17:17:10 +02:00
2 changed files with 24 additions and 16 deletions

View File

@ -1,12 +1,27 @@
# ~/.profile: executed by the command interpreter for login shells. # $FreeBSD: releng/11.1/share/skel/dot.profile 278616 2015-02-12 05:35:00Z cperciva $
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login #
# exists. # .profile - Bourne Shell startup script for login shells
# see /usr/share/doc/bash/examples/startup-files for examples. #
# the files are located in the bash-doc package. # see also sh(1), environ(7).
#
# the default umask is set in /etc/profile; for setting the umask # These are normally set through /etc/login.conf. You may override them here
# for ssh logins, install and configure the libpam-umask package. # if wanted.
#umask 022 # 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 running bash
if [ -n "$BASH_VERSION" ]; then if [ -n "$BASH_VERSION" ]; then
@ -21,5 +36,3 @@ if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH" PATH="$HOME/bin:$PATH"
fi fi
export LC_CTYPE=fr_FR.UTF-8

View File

@ -8,12 +8,7 @@ call vundle#begin()
Plugin 'VundleVim/Vundle.vim' Plugin 'VundleVim/Vundle.vim'
Plugin 'scrooloose/nerdtree.git' Plugin 'scrooloose/nerdtree.git'
Plugin 'bling/vim-airline' 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' Bundle 'chase/vim-ansible-yaml'
" }}} " }}}