Code Monkey home page Code Monkey logo

vim-settings's Introduction

Hi! I am Luis Miguel Báez: 👋

I am a Systems and Computer Engineer at UNAL. I am also passionate about computer problem solving and competitive programming that I have been active in for the last 2.5 years.

📬 Get in touch

Languages and Technologies

  • Programming Languages

    • C++ (Intermediate)
    • Javascript/TypeScript - Node.js (Intermediate)
    • Rust (Intermediate)
    • Python (Intermediate)
    • Java (Intermediate)
  • Technologies

    • Git (Intermediate)
    • Unix (Intermediate)
    • SQL (Intermediate)
    • Docker (Intermediate)
    • Kubernetes/OpenShift (Basic)

GitHub Stats

My GitHub stats Top Langs

vim-settings's People

Contributors

luchobazz avatar

Stargazers

 avatar  avatar

Watchers

 avatar

vim-settings's Issues

vimrc

set tabstop=4
set shiftwidth=4
set softtabstop=4
set autoindent
set mouse=a
set number
set relativenumber
set expandtab

" Plugin

" set nocompatible
" filetype plugin indent on
filetype off

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'

" Add plugins here

Plugin 'preservim/nerdtree'
Plugin 'tibabit/vim-templates' " Templates
Plugin 'romkatv/powerlevel10k'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'

" Autocomplete parenthesis
Plugin 'jiangmiao/auto-pairs'

" Autocomplete
Plugin 'ycm-core/YouCompleteMe'

" Track the engine.
Plugin 'SirVer/ultisnips'

" Snippets are separated from the engine. Add this if you want them:
Plugin 'honza/vim-snippets'

" Trigger configuration. Do not use <tab> if you use https://github.com/Valloric/YouCompleteMe.

"" Ultisnips
let g:UltiSnipsExpandTrigger="<c-a>"
let g:UltiSnipsJumpForwardTrigger="<c-w>"
let g:UltiSnipsJumpBackwardTrigger="<c-q>"
" Create a new snips
" https://yufanlu.net/2016/10/30/ultisnips/

" If you want :UltiSnipsEdit to split your window.
let g:UltiSnipsEditSplit="vertical"

call vundle#end()
filetype plugin indent on

map <C-t> :NERDTree<CR>
" End Plugings

" Setting - Vim Template

let g:tmpl_search_paths = ['~/.vim/VimTemplate/templates']

let g:tmpl_author_email = '[email protected]'

let g:tmpl_author_name = 'Luis Miguel Baez'

nmap <C-k> :TTA<cr>

"" YouCompleteMe
let g:ycm_key_list_previous_completion=['<Up>']
let g:ycm_max_num_candidates = 5
let g:ycm_max_num_identifier_candidates = 50

vscode c++ configuration

{
    "cph.general.defaultLanguage": "cpp",
    "workbench.iconTheme": "vscode-icons",
    "window.zoomLevel": -1,
    "workbench.colorTheme": "Monokai",
    "cph.language.cpp.Args": "-O2",
    "[cpp]": {
        "editor.quickSuggestions": {
            "other": false,
            "comments": false,
            "strings": false
        }
    }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.