Code Monkey home page Code Monkey logo

neovim-configuration's Introduction

Neovim Configuration

Build and Release Installers

This Neovim configuration is tailored for a streamlined and feature-rich development experience. It includes various tools and settings to enhance productivity and ease of use.

Features

Syntax Highlighting & Color Schemes

  • Treesitter integration for modern syntax highlighting.
  • Additional features like rainbow brackets and text subjects.
  • Gruvbox color scheme with dark contrast.

User Interface Enhancements

  • Status bar with Lualine.
  • File tree explorer with Nvim-tree.
  • Tab and buffer management with Bufferline.
  • Indentation visualization with Indent-blankline.

Code Editing & Navigation

  • Autocomplete with Coc.nvim.
  • Auto-pairing of brackets.
  • Multiple cursor support.
  • Navigation using Telescope for file searching, live grep, buffer switching, and more.
  • Custom key mappings for quick navigation, saving, quitting, etc.

Integrated Development Environment (IDE) Features

  • Integrated terminal with Toggleterm.
  • Easy commenting with Comment.nvim.
  • Task management with Todo-comments.

Git Integration

  • Inline Git signs and information with Gitsigns.

Installation & Usage

Linux

Execute the following command to install:

curl -sSL installer-linux.sh | bash

Windows

Download and execute installer-windows.exe from the releases page.

Customization

You can customize the configuration by editing the relevant files in the ~/.config/nvim directory. Make sure to consult the respective plugin documentation if you need help with individual plugins.


Please note that this configuration might require Neovim 0.5 or higher, and some plugins might need additional dependencies to be installed on your system.

neovim-configuration's People

Contributors

elc0mpa avatar evert-arias avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

eleazargmz

neovim-configuration's Issues

How to add Multiple indent colors in blankline.lua

Hello José, I'm new in Nvim..

Yesterday, I commented on the YouTube channel. Congratulations for your Neovim tutorial. Question: I've tried to add multiple indent colors to the blankline configuration. How can this be done in the configuration? Thank you and cheers from Chile.

Hola José, Ayer te comenté en el canal de youtube. Mis felcitaciones por tu tutorial de nvim. Consulta : he intentado agregar a la configuación de blankline, Multiple indent colors. Como se puede realizar a la configuración? Gracias y saludos desde Chile.

`local highlight = {
"RainbowRed",
"RainbowYellow",
"RainbowBlue",
"RainbowOrange",
"RainbowGreen",
"RainbowViolet",
"RainbowCyan",
}

local hooks = require "ibl.hooks"
-- create the highlight groups in the highlight setup hook, so they are reset
-- every time the colorscheme changes
hooks.register(hooks.type.HIGHLIGHT_SETUP, function()
vim.api.nvim_set_hl(0, "RainbowRed", { fg = "#E06C75" })
vim.api.nvim_set_hl(0, "RainbowYellow", { fg = "#E5C07B" })
vim.api.nvim_set_hl(0, "RainbowBlue", { fg = "#61AFEF" })
vim.api.nvim_set_hl(0, "RainbowOrange", { fg = "#D19A66" })
vim.api.nvim_set_hl(0, "RainbowGreen", { fg = "#98C379" })
vim.api.nvim_set_hl(0, "RainbowViolet", { fg = "#C678DD" })
vim.api.nvim_set_hl(0, "RainbowCyan", { fg = "#56B6C2" })
end)

require("ibl").setup { indent = { highlight = highlight } }`

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.