updates from manomano

This commit is contained in:
Jorge Holgado 2025-03-12 09:49:59 +01:00
parent f988c04998
commit ff414ff975
Signed by: dodger
GPG Key ID: 6F6F6D5ADCEB1CC0
4 changed files with 192 additions and 0 deletions

10
.vimrc
View File

@ -50,6 +50,8 @@ Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' }
" Plugin outside ~/.vim/plugged with post-update hook
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
"Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
" Unmanaged plugin (manually installed and updated)
@ -72,6 +74,10 @@ Plug 'jeetsukumaran/vim-buffergator'
"Plug 'maxboisvert/vim-simple-complete'
" arduino stuff
Plug 'SirVer/ultisnips'
Plug 'sudar/vim-arduino-snippets'
" Initialize plugin system
call plug#end()
@ -108,6 +114,10 @@ nmap <F8> :TagbarToggle<CR>
" disable folding in markdown
let g:vim_markdown_folding_disabled = 1
" for ino files, 2 spaces
autocmd Filetype arduino setlocal ts=2 sw=2 expandtab
" not using goimports, using gofmt because It will delete ciberterminal
" imports
" https://stackoverflow.com/questions/26824234/vim-go-deleting-unused-code-when-write-to-disk

32
archlinux_packages.txt Normal file
View File

@ -0,0 +1,32 @@
vim-airline
vim-airline-themes
vim-ale
vim-align
vim-ansible
vim-bufexplorer
vim-coverage-highlight
vim-csound
vim-ctrlp
vim-easymotion
vim-editorconfig
vim-fugitive
vim-gitgutter
vim-grammalecte
vim-indent-object
vim-jad
vim-jedi
vim-latexsuite
vim-molokai
vim-nerdcommenter
vim-nerdtree
vim-pastie
vim-runtime
vim-seti
vim-supertab
vim-surround
vim-syntastic
vim-tabular
vim-tagbar
vim-ultisnips
vim-vital
vim-youcompleteme-git

View File

@ -0,0 +1,32 @@
#vim-airline
#vim-airline-themes
vim-ale
vim-align
vim-ansible
vim-bufexplorer
vim-coverage-highlight
vim-csound
#vim-ctrlp
vim-easymotion
#vim-editorconfig
#vim-fugitive
#vim-gitgutter
->vim-grammalecte
vim-indent-object
->vim-jad
vim-jedi
#vim-latexsuite
vim-molokai
vim-nerdcommenter
vim-nerdtree
vim-pastie
#vim-runtime
# OK vim-seti
vim-supertab
vim-surround
#vim-syntastic
#vim-tabular
vim-tagbar
#vim-ultisnips
vim-vital
vim-youcompleteme

118
vim_archlinux Normal file
View File

@ -0,0 +1,118 @@
" ############################################## GLOBAL CONFIG
" ##############################################
set encoding=utf-8
set nocompatible " We're running Vim, not Vi!
set tabstop=4
set shiftwidth=4
set expandtab
"set termguicolors
" map leader with , to start combos
let mapleader = ","
let g:solarized_termcolors=256
execute pathogen#infect()
call plug#begin()
" The default plugin directory will be as follows:
" - Vim (Linux/macOS): '~/.vim/plugged'
" - Vim (Windows): '~/vimfiles/plugged'
" - Neovim (Linux/macOS/Windows): stdpath('data') . '/plugged'
" You can specify a custom plugin directory by passing it as the argument
" - e.g. `call plug#begin('~/.vim/plugged')`
" - Avoid using standard Vim directory names like 'plugin'
" Make sure you use single quotes
" Shorthand notation; fetches https://github.com/junegunn/vim-easy-align
Plug 'junegunn/vim-easy-align'
" Any valid git URL is allowed
Plug 'https://github.com/junegunn/vim-github-dashboard.git'
" Multiple Plug commands can be written in a single line using | separators
Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets'
" On-demand loading
"Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
" Using a non-default branch
Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' }
" Using a tagged release; wildcard allowed (requires git 1.9.2 or above)
Plug 'fatih/vim-go', { 'tag': '*' }
" Plugin options
Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' }
" Plugin outside ~/.vim/plugged with post-update hook
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
"Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
" Unmanaged plugin (manually installed and updated)
"Plug '~/my-prototype-plugin'
Plug 'tpope/vim-sensible'
Plug 'junegunn/seoul256.vim'
Plug 'vim-syntastic/syntastic'
Plug 'mbbill/undotree'
" airline
" WARNING airline mess with command prompt!!
"Plug 'vim-airline/vim-airline'
"Plug 'vim-airline/vim-airline-themes'
" buffergator for buffers
Plug 'jeetsukumaran/vim-buffergator'
"Plug 'maxboisvert/vim-simple-complete'
" arduino stuff
Plug 'SirVer/ultisnips'
Plug 'sudar/vim-arduino-snippets'
" Initialize plugin system
call plug#end()
" NERD commenter
source ~/.vim/pluginconf/nerd_commenter.vim
" syntastic
source ~/.vim/pluginconf/syntastic.vim
" undotree
source ~/.vim/pluginconf/undotree.vim
" nerdtree
"source ~/.vim/pluginconf/nerdtree.vim
" fzf
source ~/.vim/pluginconf/fzf.vim
" latex suggestions
source ~/.vim/pluginconf/latex.vim
" Additional configs
"colorschem solarized
colorscheme molokai
if &diff
colorscheme apprentice
endif
" tagbar
nmap <F8> :TagbarToggle<CR>
" disable folding in markdown
let g:vim_markdown_folding_disabled = 1
" for ino files, 2 spaces
autocmd Filetype arduino setlocal ts=2 sw=2 expandtab