···11+" enable tabline
22+let g:airline#extensions#tabline#enabled = 1
33+let g:airline#extensions#tabline#left_sep = ''
44+let g:airline#extensions#tabline#left_alt_sep = ''
55+let g:airline#extensions#tabline#right_sep = ''
66+let g:airline#extensions#tabline#right_alt_sep = ''
77+88+" enable powerline fonts
99+let g:airline_powerline_fonts = 1
1010+let g:airline_left_sep = ''
1111+let g:airline_right_sep = ''
1212+1313+" Switch to your current theme
1414+let g:airline_theme = 'onedark'
1515+1616+" Always show tabs
1717+set showtabline=2
1818+1919+" We don't need to see things like -- INSERT -- anymore
2020+set noshowmode
+23
nvim/themes/themes/onedark.vim
···11+" onedark.vim override: Don't set a background color when running in a terminal;
22+if (has("autocmd") && !has("gui_running"))
33+ augroup colorset
44+ autocmd!
55+ let s:white = { "gui": "#ABB2BF", "cterm": "145", "cterm16" : "7" }
66+ autocmd ColorScheme * call onedark#set_highlight("Normal", { "fg": s:white }) " `bg` will not be styled since there is no `bg` setting
77+ augroup END
88+endif
99+1010+hi Comment cterm=italic
1111+let g:onedark_hide_endofbuffer=1
1212+let g:onedark_terminal_italics=1
1313+let g:onedark_termcolors=256
1414+1515+syntax on
1616+colorscheme onedark
1717+1818+1919+" checks if your terminal has 24-bit color support
2020+if (has("termguicolors"))
2121+ set termguicolors
2222+ hi LineNr ctermbg=NONE guibg=NONE
2323+endif
vim/init.vim
nvim/init.vim
+20
vim/vim-shortcuts.md
···4040Ctrl-o: jump back to where you were
4141J: join the current line with the next one (delete what's between)
42424343+## Do even more Navigation
4444+ctrl+p: fuzzy finding for files
4545+:e open a new file
4646+ctrl+ˆ: toggle between two open files
4747+### local marks
4848+m-any-key: set a marker on that key. with '-any-key you can jump back to that marker. you can set multiple markers
4949+ useful when you work in a file for long!
5050+### global marks
5151+same as local also set with m, but this time the any key will be capitalized
5252+5353+## window operations
5454+ctrl+w: entering window mode
5555+then:
5656+v: vertical split
5757+s: horizontal split
5858+5959+o: closes all except current one that I-m in
6060+:resize 10 for 10 rows or :resize vertical 10 for columns
6161+:Ex opens the file-three
6262+4363## visual mode
4464v -> visual mode (characters)
4565V -> line mode
+4
vim/vimrc
···5353" prettier
5454Plug 'sbdchd/neoformat'
55555656+"status bar
5757+Plug 'vim-airline/vim-airline'
5858+Plug 'vim-airline/vim-airline-themes'
5959+5660call plug#end()
5761"install with :PlugInstall