How can I configure neovim so that the color scheme is the same as vs code?

This page summarizes the projects mentioned and recommended in the original post on /r/neovim

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • vscode.nvim

    Neovim/Vim color scheme inspired by Dark+ and Light+ theme in Visual Studio Code

  • local Plug = vim.fn['plug#'] vim.call('plug#begin', '~/.config/nvim/plugged') --vscode theme https://github.com/Mofiqul/vscode.nvim Plug 'Mofiqul/vscode.nvim' Plug "williamboman/nvim-lsp-installer" --language server, command :LspInstall Plug 'neovim/nvim-lspconfig' Plug 'simrat39/rust-tools.nvim' --left sidebar, File Explorer. Plug 'kyazdani42/nvim-web-devicons' Plug 'kyazdani42/nvim-tree.lua' -- Language parser, command :TSInstall Plug ('nvim-treesitter/nvim-treesitter', {['do'] = vim.fn[':TSUpdate']}) vim.call('plug#end') -- For dark theme (neovim's default) vim.o.background = "dark" -- Enable italic comment vim.g.vscode_italic_comment = 1 -- Disable nvim-tree background color vim.g.vscode_disable_nvimtree_bg = true vim.cmd([[colorscheme vscode]]) require("nvim-lsp-installer").setup({}) require('rust-tools').setup({}) require("nvim-tree").setup()

  • lush.nvim

    Create Neovim themes with real-time feedback, export anywhere.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • tmux

    tmux source code

  • vim-code-dark

    Dark color scheme for Vim and vim-airline, inspired by Dark+ in Visual Studio Code

  • try out this theme instead, it might work better: https://github.com/tomasiser/vim-code-dark

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts