mirror of https://github.com/E-Almqvist/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.3 KiB
47 lines
1.3 KiB
" ##############..... ##############
|
|
" ##############......##############
|
|
" ##########..........##########
|
|
" ##########........##########
|
|
" ##########.......##########
|
|
" ##########.....##########..
|
|
" ##########....##########.....
|
|
" ..##########..##########.........
|
|
" ....##########.#########.............
|
|
" ..################JJJ............
|
|
" ################.............
|
|
" ##############.JJJ.JJJJJJJJJJ
|
|
" ############...JJ...JJ..JJ JJ
|
|
" ##########....JJ...JJ..JJ JJ
|
|
" ########......JJJ..JJJ JJJ JJJ
|
|
" ###### .........
|
|
" .....
|
|
" .
|
|
|
|
" Logic
|
|
set mouse=a
|
|
set wrap
|
|
set noet
|
|
|
|
" GUI stuff
|
|
syntax on
|
|
set nu
|
|
set ruler
|
|
|
|
" Vim-Plug
|
|
call plug#begin('~/.vim/plugged')
|
|
Plug 'https://github.com/hugolgst/vimsence.git' " Discord Presence
|
|
Plug 'sheerun/vim-polyglot' " Syntax highlightning
|
|
Plug 'preservim/nerdtree' " Tree navigation
|
|
Plug 'rafi/awesome-vim-colorschemes' " Theme collection
|
|
call plug#end()
|
|
|
|
" Mapping
|
|
" CTRL + D to open navtree
|
|
nmap <silent> <C-D> :NERDTreeToggle<CR>
|
|
|
|
|
|
" Theme
|
|
set t_Co=256
|
|
colorscheme happy_hacking
|
|
let &showbreak = '↳ '
|
|
hi Normal guibg=NONE ctermbg=NONE
|
|
|