diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2024-05-28 23:21:22 +0200 |
---|---|---|
committer | jakobst1n <jakob.stendahl@outlook.com> | 2024-05-28 23:21:22 +0200 |
commit | 1f5856a66791620fcb665f839619fa43e68063e1 (patch) | |
tree | f8e2de73746385133878a11fd1e8098689e089ca /Common/nvim/lua | |
parent | 0d41b6ec30351451452aec6ced80734bfb435845 (diff) | |
download | dotfiles-1f5856a66791620fcb665f839619fa43e68063e1.tar.gz dotfiles-1f5856a66791620fcb665f839619fa43e68063e1.zip |
Bw
Diffstat (limited to 'Common/nvim/lua')
-rwxr-xr-x | Common/nvim/lua/basic.lua | 4 | ||||
-rwxr-xr-x | Common/nvim/lua/plugins.lua | 15 |
2 files changed, 5 insertions, 14 deletions
diff --git a/Common/nvim/lua/basic.lua b/Common/nvim/lua/basic.lua index cb36189..342dde9 100755 --- a/Common/nvim/lua/basic.lua +++ b/Common/nvim/lua/basic.lua @@ -1,4 +1,3 @@ -vim.opt.autoread = true vim.opt.formatoptions:remove("t") vim.opt.path:append("**") vim.g.netrw_banner = 0 @@ -29,11 +28,10 @@ vim.cmd [[ ]] -- Colorscheme -vim.cmd [[ colorscheme vim ]] +vim.cmd [[ colorscheme bw ]] vim.opt.background = "light" -- No idea why, preview in fzf does at least work extremely porly without this vim.cmd [[ let $BAT_THEME = 'gruvbox-light' ]] -- Show colour column vim.opt.colorcolumn = '120' -vim.api.nvim_set_hl(0, "ColorColumn", { ctermbg = "lightgrey", bg = "#eae7da" }) diff --git a/Common/nvim/lua/plugins.lua b/Common/nvim/lua/plugins.lua index 1faf832..829ca15 100755 --- a/Common/nvim/lua/plugins.lua +++ b/Common/nvim/lua/plugins.lua @@ -17,12 +17,7 @@ return require('packer').startup(function(use) -- Packer itself :) use 'wbthomason/packer.nvim' - -- Git plugins - use { - 'tpope/vim-fugitive', - } - - -- fzf (Fuzzy finder for various things) + use 'tpope/vim-fugitive' use { 'junegunn/fzf.vim', requires = { 'junegunn/fzf', 'kyazdani42/nvim-web-devicons' }, @@ -70,6 +65,9 @@ return require('packer').startup(function(use) ensure_installed = { "c", "cpp", "python", "php", "java", "lua", "vim", "vimdoc", "query", "php", "sql" }, sync_install = false, auto_install = true, + highlight = { + enable = false, + }, --ignore_install = { "javascript" }, } end @@ -94,11 +92,6 @@ return require('packer').startup(function(use) end, } - -- Useful for wide screens - use { - 'junegunn/goyo.vim' - } - -- VimWiki stuff use { 'vimwiki/vimwiki', |