mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
Add sublime text config and vim
This commit is contained in:
parent
9bb561f0d2
commit
262cea2a4a
4 changed files with 59 additions and 15 deletions
4
sublime/
A File Icon.sublime-settings
Normal file
4
sublime/
A File Icon.sublime-settings
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"opacity": 1,
|
||||||
|
"force_mode": true
|
||||||
|
}
|
||||||
18
sublime/Package Control.sublime-settings
Normal file
18
sublime/Package Control.sublime-settings
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"bootstrapped": true,
|
||||||
|
"in_process_packages":
|
||||||
|
[
|
||||||
|
],
|
||||||
|
"installed_packages":
|
||||||
|
[
|
||||||
|
"A File Icon",
|
||||||
|
"Agila Theme",
|
||||||
|
"AutoFileName",
|
||||||
|
"BracketHighlighter",
|
||||||
|
"Color Highlight",
|
||||||
|
"Discord Rich Presence",
|
||||||
|
"Emmet",
|
||||||
|
"Package Control",
|
||||||
|
"VimL"
|
||||||
|
]
|
||||||
|
}
|
||||||
18
sublime/Preferences.sublime-settings
Normal file
18
sublime/Preferences.sublime-settings
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"color_scheme": "Packages/Agila Theme/Agila Neon Monocyanide.tmTheme",
|
||||||
|
"draw_indent_guides": false,
|
||||||
|
"draw_white_space": "all",
|
||||||
|
"font_size": 10,
|
||||||
|
"ignored_packages":
|
||||||
|
[
|
||||||
|
"Vintage"
|
||||||
|
],
|
||||||
|
"margin": 0,
|
||||||
|
"remeber_open_files": true,
|
||||||
|
"tab_size": 4,
|
||||||
|
"theme": "Agila Neon.sublime-theme",
|
||||||
|
"translate_tabs_to_spaces": true,
|
||||||
|
"trim_trailling_white_space_on_save": false,
|
||||||
|
"update_check": false,
|
||||||
|
"word_wrap": false
|
||||||
|
}
|
||||||
34
vimrc
34
vimrc
|
|
@ -1,16 +1,16 @@
|
||||||
call plug#begin('~/.vim/plugged')
|
call plug#begin('~/.vim/plugged')
|
||||||
Plug 'jiangmiao/auto-pairs' " Automapic closing of quotes
|
Plug 'jiangmiao/auto-pairs'
|
||||||
Plug 'flazz/vim-colorschemes' " ColorChemes pack
|
Plug 'flazz/vim-colorschemes'
|
||||||
"Plug 'sheerun/vim-polyglot'
|
Plug 'itchyny/lightline.vim'
|
||||||
"Plug 'pangloss/vim-javascript' " JS syntax support
|
Plug'junegunn/goyo.vim'
|
||||||
"Plug 'mattn/emmet-vim', {'for': 'html'} " Emmet
|
Plug 'pangloss/vim-javascript', {'for': 'js'}
|
||||||
"Plug 'airblade/vim-gitgutter' " Git indecator
|
Plug 'mattn/emmet-vim', {'for': 'html'}
|
||||||
"Plug 'ap/vim-css-color', {'for': 'css'} " CSS color
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
set nocompatible " be iMproved
|
set nocompatible " be iMproved
|
||||||
|
set laststatus=2
|
||||||
|
|
||||||
"set number " Number line
|
set number " Number line
|
||||||
"set relativenumber " Number line
|
"set relativenumber " Number line
|
||||||
|
|
||||||
syntax on " Support syntax
|
syntax on " Support syntax
|
||||||
|
|
@ -58,14 +58,18 @@ set visualbell t_vb= " Mute Vim
|
||||||
" ColoerCheme
|
" ColoerCheme
|
||||||
set background=dark
|
set background=dark
|
||||||
colorscheme OceanicNext
|
colorscheme OceanicNext
|
||||||
" Color cheme list
|
|
||||||
" Dark: adventurs, Atelier_DuneLight, colorsbox-material, colorsbox-faff, OceanicNext, gruvbox, Monokai, material
|
|
||||||
" Light: newspaper, wikipedia, Atelier_CaveLight, mac_classic
|
|
||||||
|
|
||||||
" Python
|
" Lightline
|
||||||
let python_highlight_all = 1
|
let g:lightline = {
|
||||||
"autocmd BufWritePre *.py normal m`:%s/\s\+$//e `
|
\ 'colorscheme': 'wombat',
|
||||||
"autocmd BufRead *.py set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class
|
\ }
|
||||||
|
let g:dcrpc_autostart = 1
|
||||||
|
|
||||||
|
|
||||||
|
" Goyo
|
||||||
|
let g:goyo_width = 125
|
||||||
|
let g:goyo_height = '100%'
|
||||||
|
|
||||||
|
|
||||||
""""""""""
|
""""""""""
|
||||||
" MAPING "
|
" MAPING "
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue