mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41: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')
|
||||
Plug 'jiangmiao/auto-pairs' " Automapic closing of quotes
|
||||
Plug 'flazz/vim-colorschemes' " ColorChemes pack
|
||||
"Plug 'sheerun/vim-polyglot'
|
||||
"Plug 'pangloss/vim-javascript' " JS syntax support
|
||||
"Plug 'mattn/emmet-vim', {'for': 'html'} " Emmet
|
||||
"Plug 'airblade/vim-gitgutter' " Git indecator
|
||||
"Plug 'ap/vim-css-color', {'for': 'css'} " CSS color
|
||||
Plug 'jiangmiao/auto-pairs'
|
||||
Plug 'flazz/vim-colorschemes'
|
||||
Plug 'itchyny/lightline.vim'
|
||||
Plug'junegunn/goyo.vim'
|
||||
Plug 'pangloss/vim-javascript', {'for': 'js'}
|
||||
Plug 'mattn/emmet-vim', {'for': 'html'}
|
||||
call plug#end()
|
||||
|
||||
set nocompatible " be iMproved
|
||||
set laststatus=2
|
||||
|
||||
"set number " Number line
|
||||
set number " Number line
|
||||
"set relativenumber " Number line
|
||||
|
||||
syntax on " Support syntax
|
||||
|
|
@ -58,14 +58,18 @@ set visualbell t_vb= " Mute Vim
|
|||
" ColoerCheme
|
||||
set background=dark
|
||||
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
|
||||
let python_highlight_all = 1
|
||||
"autocmd BufWritePre *.py normal m`:%s/\s\+$//e `
|
||||
"autocmd BufRead *.py set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class
|
||||
" Lightline
|
||||
let g:lightline = {
|
||||
\ 'colorscheme': 'wombat',
|
||||
\ }
|
||||
let g:dcrpc_autostart = 1
|
||||
|
||||
|
||||
" Goyo
|
||||
let g:goyo_width = 125
|
||||
let g:goyo_height = '100%'
|
||||
|
||||
|
||||
""""""""""
|
||||
" MAPING "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue