all repos

init.lua @ 2836eff3719c73bddaac283a420f3d33688077d2

my nvim config
4 files changed, 4 insertions(+), 3 deletions(-)
Fixed typo; and other updates
Author: flof-ik ss2316544@gmail.com
Committed at: 2022-02-28 18:35:28 +0200
Parent: 7d863ed
M lua/fk/lsp/init.lua

@@ -3,8 +3,8 @@ local diagnostic = require "fk.lsp.diagnostic"

local M = {} function M.setup() - vim.diagnostic.config(diagnostic) -- Diagnostics + vim.diagnostic.config(diagnostic) for _, sign in ipairs(diagnostic.signs.active) do vim.fn.sign_define(sign.name, { texthl = sign.name, text = sign.text, numhl = "" }) end
M lua/fk/plugin/nvimtree.lua

@@ -1,4 +1,5 @@

vim.g.nvim_tree_group_empty = 1 + require("nvim-tree").setup { disable_netrw = true, hijack_netrw = true,
M lua/fk/plugin/project.lua

@@ -1,7 +1,7 @@

require("project_nvim").setup { manual_mode = false, detection_methods = { "lsp", "pattern" }, - patterns = { ".git", ".svn", "Makefile", "package.json", "go.mod" }, + patterns = { ".git", "Makefile", "package.json", "go.mod" }, show_hidden = false, silent_chdir = true, }
M lua/fk/plugin/statusline.lua

@@ -3,7 +3,7 @@ options = {

theme = "onenord", component_separators = { "", "" }, section_separators = { "", "" }, - disabled_filetypes = { "NvimTree", "Telescope", "alpha" }, + disabled_filetypes = { "NvimTree", "Telescope" }, always_divide_middle = false, }, sections = {