use nvim-base16 instead of base16-vim cuz its fast
This commit is contained in:
parent
7adcc2a55d
commit
f7e027085b
|
@ -65,7 +65,7 @@ without Treesitter :
|
|||
with Treesitter :
|
||||
<kbd> <img src = "https://raw.githubusercontent.com/siduck76/dotfiles/master/rice%20flex/wiTree.png"></kbd><hr>
|
||||
|
||||
#Config structure
|
||||
# Config structure
|
||||
|
||||
```
|
||||
nvim
|
||||
|
|
6
init.lua
6
init.lua
|
@ -21,12 +21,14 @@ local g = vim.g
|
|||
g.mapleader = " "
|
||||
g.auto_save = 1
|
||||
|
||||
-- colorscheme
|
||||
-- colorscheme related stuff
|
||||
|
||||
cmd "colorscheme base16-onedark"
|
||||
cmd "syntax enable"
|
||||
cmd "syntax on"
|
||||
|
||||
local base16 = require "base16"
|
||||
base16(base16.themes["onedark"], true)
|
||||
|
||||
-- blankline
|
||||
|
||||
local indent = 2
|
||||
|
|
|
@ -7,15 +7,14 @@ return require("packer").startup(
|
|||
use {"wbthomason/packer.nvim", opt = true}
|
||||
use {"lukas-reineke/indent-blankline.nvim", branch = "lua"}
|
||||
|
||||
use "norcalli/nvim-base16.lua"
|
||||
use "kyazdani42/nvim-web-devicons"
|
||||
use "kyazdani42/nvim-tree.lua"
|
||||
use "nvim-lua/plenary.nvim"
|
||||
use "lewis6991/gitsigns.nvim"
|
||||
use "glepnir/galaxyline.nvim"
|
||||
use "akinsho/nvim-bufferline.lua"
|
||||
use "907th/vim-auto-save"
|
||||
use "nvim-treesitter/nvim-treesitter"
|
||||
use "chriskempson/base16-vim"
|
||||
use "norcalli/nvim-colorizer.lua"
|
||||
use "ryanoasis/vim-devicons"
|
||||
use "sbdchd/neoformat"
|
||||
|
|
Loading…
Reference in New Issue