Update.
This commit is contained in:
parent
60361bc254
commit
a579cf5b88
@ -1,8 +1,9 @@
|
|||||||
# Jeff's dotfiles
|
# My dotfiles
|
||||||
|
|
||||||
My dotfiles for awesome, emacs, vim, zsh, tmux,...
|
My dotfiles for awesome, emacs, vim, zsh, tmux,...
|
||||||
|
|
||||||
## Externals / Librairies used
|
## Externals / Librairies used
|
||||||
* [dotbot](https://github.com/anishathalye/dotbot/)
|
* [dotbot](https://github.com/anishathalye/dotbot/)
|
||||||
|
* [editorconfig](https://editorconfig.org/)
|
||||||
* [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh)
|
* [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh)
|
||||||
* [vim-plug](https://github.com/junegunn/vim-plug)
|
* [vim-plug](https://github.com/junegunn/vim-plug)
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
#########################
|
||||||
|
# abcde config file #
|
||||||
|
#########################
|
||||||
|
|
||||||
# System defaults for abcde version 2.7.1
|
# System defaults for abcde version 2.7.1
|
||||||
# Nothing in this file is uncommented by default.
|
# Nothing in this file is uncommented by default.
|
||||||
#
|
#
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
###############################
|
||||||
|
# ANsiweather config file #
|
||||||
|
###############################
|
||||||
|
|
||||||
location:Mauguio,FR
|
location:Mauguio,FR
|
||||||
forecast:3
|
forecast:3
|
||||||
dateformat:%a %d %b
|
dateformat:%a %d %b
|
||||||
|
30
confs/editorconfig
Normal file
30
confs/editorconfig
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
################################
|
||||||
|
# EditorConfig config file #
|
||||||
|
################################
|
||||||
|
|
||||||
|
# EditorConfig is awesome: https://EditorConfig.org
|
||||||
|
|
||||||
|
# top-most EditorConfig file
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[{*,.*}]
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
max_line_length = 80
|
||||||
|
charset = utf-8
|
||||||
|
|
||||||
|
[*.py]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
|
max_line_length = 79
|
||||||
|
|
||||||
|
[{Makefile,makefile,*.mk}]
|
||||||
|
indent_style = tab
|
||||||
|
|
||||||
|
[*.md]
|
||||||
|
indent_style = space
|
||||||
|
|
||||||
|
[*.sh]
|
||||||
|
max_line_length = 0
|
@ -1,3 +1,7 @@
|
|||||||
|
########################
|
||||||
|
# TMux config file #
|
||||||
|
########################
|
||||||
|
|
||||||
# Defini le shell par defaut lance par tmux
|
# Defini le shell par defaut lance par tmux
|
||||||
set-option -g default-shell "/bin/zsh"
|
set-option -g default-shell "/bin/zsh"
|
||||||
|
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
########################
|
||||||
|
# wget config file #
|
||||||
|
########################
|
||||||
|
|
||||||
#recursive = on
|
#recursive = on
|
||||||
dirstruct = off
|
dirstruct = off
|
||||||
no_parent = on
|
no_parent = on
|
||||||
|
@ -218,6 +218,12 @@
|
|||||||
;; Ditaa
|
;; Ditaa
|
||||||
(setq org-ditaa-jar-path "/usr/bin/ditaa")
|
(setq org-ditaa-jar-path "/usr/bin/ditaa")
|
||||||
|
|
||||||
|
;; EditorConfig
|
||||||
|
(use-package editorconfig
|
||||||
|
:ensure t
|
||||||
|
:config
|
||||||
|
(editorconfig-mode 1))
|
||||||
|
|
||||||
;; Elpy
|
;; Elpy
|
||||||
(use-package elpy
|
(use-package elpy
|
||||||
:ensure t
|
:ensure t
|
||||||
|
2
libs/configs/editorconfig.yaml
Normal file
2
libs/configs/editorconfig.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
- link:
|
||||||
|
~/.editorconfig.conf: confs/editorconfig.conf
|
@ -11,7 +11,7 @@
|
|||||||
if empty(glob('~/.vim/autoload/plug.vim'))
|
if empty(glob('~/.vim/autoload/plug.vim'))
|
||||||
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
|
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
|
||||||
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||||
autocmd VimEnter * PlugInstall --sync
|
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Specify a directory for plugins
|
" Specify a directory for plugins
|
||||||
|
Loading…
x
Reference in New Issue
Block a user