Giter Site home page Giter Site logo

nvim_simple_mode's Introduction

neovim simple mode

Concepts

  1. Maintains a user-friendly concept similar to tmux, carrying over the settings from tmux.
  2. The basic combination uses space. The Leader key is used for important settings and short-range mapping.
  3. Unnecessary plugins are excluded.
  4. Only gdb will be used for debugging…

Quick Install

./script/setup_init_file.sh
git clone --depth 1 https://github.com/wbthomason/packer.nvim\
 ~/.local/share/nvim/site/pack/packer/start/packer.nvim
nvim +PackerInstall

Plugins

Plugin importer

Plugin Import and Installer https://github.com/wbthomason/packer.nvim

git clone --depth 1 https://github.com/wbthomason/packer.nvim\
 ~/.local/share/nvim/site/pack/packer/start/packer.nvim

Colorscheme

https://github.com/folke/tokyonight.nvim

vim.cmd[[colorscheme tokyonight]]

FileTree

https://github.com/nvim-tree/nvim-tree.lua https://github.com/nvim-tree/nvim-web-devicons

Buffer

https://github.com/nvim-lua/popup.nvim https://github.com/nvim-lua/plenary.nvim https://github.com/akinsho/bufferline.nvim

indent Guide

https://github.com/lukas-reineke/indent-blankline.nvim

SearchFile

telescope를 사용해서 ripgrep을 integration함 https://github.com/nvim-telescope/telescope.nvim#pickers https://github.com/nvim-telescope/telescope-fzf-native.nvim https://github.com/nvim-telescope/telescope-live-grep-args.nvim

use { 'nvim-telescope/telescope-fzf-native.nvim', run = 'make' }

-- You dont need to set any of these options. These are the default ones. Only
-- the loading is important
require('telescope').setup {
  extensions = {
    fzf = {
      fuzzy = true,                    -- false will only do exact matching
      override_generic_sorter = true,  -- override the generic sorter
      override_file_sorter = true,     -- override the file sorter
      case_mode = "smart_case",        -- or "ignore_case" or "respect_case"
                                       -- the default case_mode is "smart_case"
    }
  }
}
-- To get fzf loaded and working with telescope, you need to call
-- load_extension, somewhere after setup function:
require('telescope').load_extension('fzf')

Lsp

https://github.com/neovim/nvim-lspconfig https://github.com/simrat39/rust-tools.nvim

cmp

https://github.com/hrsh7th/nvim-cmp https://github.com/hrsh7th/cmp-buffer https://github.com/hrsh7th/cmp-nvim-lsp https://github.com/hrsh7th/cmp-path https://github.com/hrsh7th/cmp-cmdline https://github.com/hrsh7th/cmp-calc

autopair

https://github.com/windwp/nvim-autopairs

ToDo

  • keymapping 추가하기 📅 2023-11-21
  • 설치할 Plugin 조사하기 📅 2023-11-21
  • Plugin 추가 📅 2023-11-22

nvim_simple_mode's People

Contributors

gamjagoon avatar

Watchers

 avatar

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.