Configuration files for my GNU/Linux installation.
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.
dotfiles/nvim/init.vim

79 lines
2.0 KiB

4 years ago
" NEO-
" ##############..... ##############
" ##############......##############
" ##########..........##########
" ##########........##########
" ##########.......##########
" ##########.....##########..
" ##########....##########.....
" ..##########..##########.........
" ....##########.#########.............
" ..################JJJ............
" ################.............
" ##############.JJJ.JJJJJJJJJJ
" ############...JJ...JJ..JJ JJ
" ##########....JJ...JJ..JJ JJ
" ########......JJJ..JJJ JJJ JJJ
" ###### .........
" .....
" .
call plug#begin('~/.config/nvim/plugged')
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'tpope/vim-markdown'
Plug 'ap/vim-css-color'
Plug 'vim-scripts/fountain.vim'
Plug 'aurieh/discord.nvim', {'do': ':UpdateRemotePlugins'} " Discord Presence
Plug 'joshdick/onedark.vim' " Theme
Plug 'rafi/awesome-vim-colorschemes'
Plug 'preservim/nerdtree'
4 years ago
Plug 'arakashic/chromatica.nvim'
4 years ago
" Plug 'itchyny/lightline.vim'
Plug 'vim-airline/vim-airline' " Airline
Plug 'vim-airline/vim-airline-themes' " Airline themes'
4 years ago
call plug#end()
set nocompatible
set showmatch
set ignorecase
set mouse=a
set hlsearch
set autoindent
set number
filetype plugin indent on
syntax on
set autoindent
set noexpandtab
4 years ago
set tabstop=4
set shiftwidth=4
4 years ago
" Binds
vmap <Tab> >gv
vmap <S-Tab> <gv
nmap <silent> <C-D> :NERDTreeToggle<CR>
" Theme
set t_Co=16
4 years ago
colors one
4 years ago
let &showbreak = '↳ '
" hi Normal guibg=NONE ctermbg=NONE
highlight clear LineNr
highlight LineNr ctermfg=grey ctermbg=NONE
" ----------------------------- "
set encoding=UTF-8
autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o
4 years ago
if (empty($TMUX))
if (has("nvim"))
let $NVIM_TUI_ENABLE_TRUE_COLOR=1
endif
if (has("termguicolors"))
set termguicolors
endif
endif